diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-02-09 22:30:40 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-02-09 22:30:40 +0000 |
commit | c1808762bec79a71f6702290344ef2f2ec723aed (patch) | |
tree | f9dac7b6f2dea5c38be0c32931ef75465d389a56 /debian | |
parent | b0a3b637a56fe39fc838771823d7f12570e917e8 (diff) |
fix install location of library in packaging (I forgot to include the 'extra' in /usr/lib/pd/extra)
svn path=/trunk/externals/sigpack/; revision=13156
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 5c170ce..fd2d3ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pd-sigpack (0.0.4.1-1.1) unstable; urgency=low +pd-sigpack (0.0.4.1-1.2) unstable; urgency=low * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> diff --git a/debian/rules b/debian/rules index fc81576..f8373e9 100755 --- a/debian/rules +++ b/debian/rules @@ -2,14 +2,15 @@ LIBRARY_NAME = sigpack PACKAGE = pd-$(LIBRARY_NAME) +pkglibdir = /usr/lib/pd/extra %: dh $@ override_dh_auto_install: - make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=/usr/lib/pd install + make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=$(pkglibdir) install override_dh_shlibdeps: - dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)/usr/lib/pd/$(LIBRARY_NAME)/*.pd_linux \ + dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \ -T$(CURDIR)/debian/$(PACKAGE).substvars |