1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- --enable-apparmor
override_dh_fixperms:
dh_fixperms
chmod 4755 debian/firejail/usr/bin/firejail
override_dh_installchangelogs:
dh_installchangelogs RELNOTES
override_dh_auto_install:
dh_auto_install
# documentation will be installed by debhelper
rm --verbose -rf debian/firejail/usr/share/doc/firejail
override_dh_auto_test:
# skip tests here as they are run as autopkgtest
|