#!/usr/bin/make -f # Copyright © 2010 Hans-Christoph Steiner # Copyright © 2018 IOhannes m zmölnig #enable hardening export DEB_BUILD_MAINT_OPTIONS=hardening=+all pkglibdir = /usr/lib/pd/extra %: dh $@ override_dh_auto_build: dh_auto_build -- \ arch.flags="" \ CPPFLAGS="$(CPPFLAGS)" \ CFLAGS="$(CPPFLAGS) $(CFLAGS)" \ CXXFLAGS="$(CPPFLAGS) $(CXXFLAGS)" \ LDFLAGS="$(LDFLAGS) -Wl,-as-needed" \ $(empty) override_dh_auto_install: dh_auto_install -- \ prefix=/usr pkglibdir=$(pkglibdir) \ STRIP="true" \ $(empty) # fix permissions find $(CURDIR)/debian/*/$(pkglibdir) -name "*.pd_linux" -exec \ chmod 0664 {} + find $(CURDIR)/debian/*/$(pkglibdir) -name "to*" -not -name "*.*" -exec \ chmod a+x {} + # remove license file so we can replace it with link to the Debian license file rm -f -- $(CURDIR)/debian/*/$(pkglibdir)/*/LICENSE.txt DEB_COPYRIGHT_CHECK_IGNORE_REGEX = \ debian/.*|examples/.*\.jpg # licensecheck v1 .PHONY: licensecheck licensecheck: LANG=C.UTF-8 licensecheck \ -i "^($(DEB_COPYRIGHT_CHECK_IGNORE_REGEX))$$" \ --check '.*' --recursive --deb-machine --lines 0 * \ > debian/copyright_newhints cmp debian/copyright_hints debian/copyright_newhints \ && rm debian/copyright_newhints