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 | a07fab5748645f9f09941d4eaf08075d7cf4c7a9 (patch) | |
tree | 461a20645ea5aa3fb2c8ed7c6bfdca91568d6742 | |
parent | c7759b7a8fb334c9840a1fac5359bb7d64327a74 (diff) |
fix install location of library in packaging (I forgot to include the 'extra' in /usr/lib/pd/extra)
svn path=/trunk/externals/ext13/; revision=13156
-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 fc3784e..a8e950b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pd-ext13 (0.17-1.1) unstable; urgency=low +pd-ext13 (0.17-1.3) unstable; urgency=low * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> diff --git a/debian/rules b/debian/rules index 9c2f3e7..51519cf 100755 --- a/debian/rules +++ b/debian/rules @@ -2,14 +2,15 @@ LIBRARY_NAME = ext13 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 |