diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:32 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:32 +0000 |
commit | 2553a569fc0cc294e40ae6ddc0197ba1eeea549a (patch) | |
tree | 7b400f03f527d5006492a2b24935ee4428eb2409 | |
parent | e3351f9f669cb323b604f352ea83a3f9ab37f036 (diff) |
Packaging tweaks
Author: jgg
Date: 1999-01-27 05:30:16 GMT
Packaging tweaks
-rwxr-xr-x | debian/rules | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 3333a02e2..517addf36 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,7 @@ # Made with the aid of dh_make, by Craig Small # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. # Some lines taken from debmake, by Christoph Lameter. -# $Id: rules,v 1.1 1998/12/22 05:06:44 che Exp $ +# $Id: rules,v 1.2 1999/01/27 05:30:16 jgg Exp $ # Uncomment this to turn on verbose mode. @@ -48,8 +48,11 @@ apt: build dh_installdirs -papt usr/bin usr/lib/apt/methods usr/lib/dpkg/methods/apt etc/apt usr/doc/apt var/cache/apt/archives/partial var/state/apt/lists/partial cp build/bin/apt-* debian/tmp/usr/bin/ - cp build/bin/libapt-pkg.so.2.0 debian/tmp/usr/lib/ - ln -s libapt-pkg.so.2.0 debian/tmp/usr/lib/libapt-pkg-so.2 + + # install the shared libs + find build/bin/ -type f -name "libapt-pkg.so.*" -exec cp -a "{}" debian/tmp/usr/lib/ \; + find build/bin/ -type l -name "libapt-pkg.so.*" -exec cp -a "{}" debian/tmp/usr/lib/ \; + cp build/bin/methods/* debian/tmp/usr/lib/apt/methods/ cp build/scripts/dselect/* debian/tmp/usr/lib/dpkg/methods/apt/ |