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 | d92818c7b2dec9084ed4ad5d79ee219c6c90e6b0 (patch) | |
tree | 0716c916f68387b83ad76157232a7996139b5baf /debian | |
parent | 5967c7afbccb4519a8b55b9f42f190aa0d2c741c (diff) |
fix install location of library in packaging (I forgot to include the 'extra' in /usr/lib/pd/extra)
svn path=/trunk/externals/windowing/; 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 654ed66..91460f8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pd-windowing (0.17-1.1) unstable; urgency=low +pd-windowing (0.17-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 4c391de..8f2c075 100755 --- a/debian/rules +++ b/debian/rules @@ -2,14 +2,15 @@ LIBRARY_NAME = windowing 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 |