1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# Get __DATE__ and __TIME__ in sources to refer to debian/changelog ultimate timestamp
include /usr/share/dpkg/pkg-info.mk
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -D ENABLE_CPPUNIT=ON
override_dh_auto_build:
dh_auto_build -- translations all
execute_after_dh_auto_install:
@echo "Upstream installs unnecessary file."
-rm debian/xournalpp/usr/share/xournalpp/ui/README.md
override_dh_dwz:
dh_dwz --no-dwz-multifile
|