debian: tweak .install: less wildcards

With the upcoming addition of libosmo-mgcp, when we try the same scheme
of wildcards there, it would also include all of the other libraries:

  *mgcp*.so.*

There we will have to clarify that we mean exactly:

  libosmo-mgcp.so.*

This is a cosmetic change to also be less ambiguous for the current libs:
I prefer to state exactly which parts of the file names may vary, so that
we have a firmer understanding of what is being installed.

Change-Id: I6a3f3b9efa08eb9c5cdca3e02f8fab4a96c28ad5
diff --git a/debian/libosmo-legacy-mgcp-dev.install b/debian/libosmo-legacy-mgcp-dev.install
index 4184fef..a57cb50 100644
--- a/debian/libosmo-legacy-mgcp-dev.install
+++ b/debian/libosmo-legacy-mgcp-dev.install
@@ -1,4 +1,4 @@
 usr/include/osmocom/legacy_mgcp
-usr/lib/*/*legacy-mgcp*.so
-usr/lib/*/*legacy-mgcp*.a
-usr/lib/*/pkgconfig/*legacy-mgcp*.pc
+usr/lib/*/libosmo-legacy-mgcp.so
+usr/lib/*/libosmo-legacy-mgcp.a
+usr/lib/*/pkgconfig/libosmo-legacy-mgcp.pc
diff --git a/debian/libosmo-legacy-mgcp0.install b/debian/libosmo-legacy-mgcp0.install
index a47cc34..90ca89d 100644
--- a/debian/libosmo-legacy-mgcp0.install
+++ b/debian/libosmo-legacy-mgcp0.install
@@ -1 +1 @@
-usr/lib/*/*legacy-mgcp*.so.*
+usr/lib/*/libosmo-legacy-mgcp.so.*
diff --git a/debian/libosmo-mgcp-client0.install b/debian/libosmo-mgcp-client0.install
index 4fc8bc6..7e86498 100644
--- a/debian/libosmo-mgcp-client0.install
+++ b/debian/libosmo-mgcp-client0.install
@@ -1 +1 @@
-usr/lib/*/*mgcp-client*.so.*
+usr/lib/*/libosmo-mgcp-client.so.*