diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-09-05 05:37:29 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 13:53:22 +0200 |
commit | 1be98debcbb631ddd90faa3361e37eb047e4b803 (patch) | |
tree | 18c56d01292459a40df91bc00496110f977b1e3c /debian/rules | |
parent | caed81ebf0203cb238cf585051cf196f24d0e67f (diff) |
added override_dh_strip target from pd-wiimote to strip things properly
svn path=/trunk/externals/maxlib/; revision=13978
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index cd82660..a8917b3 100755 --- a/debian/rules +++ b/debian/rules @@ -5,7 +5,7 @@ PACKAGE = pd-$(LIBRARY_NAME) pkglibdir = /usr/lib/pd/extra %: - dh $@ + dh --with quilt $@ override_dh_auto_install: make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=$(pkglibdir) install @@ -16,3 +16,6 @@ override_dh_shlibdeps: dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \ -T$(CURDIR)/debian/$(PACKAGE).substvars +override_dh_strip: + strip --remove-section=.comment --remove-section=.note --strip-unneeded \ + $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux |