1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# Enable Debian Hardening
# https://wiki.debian.org/Hardening
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
# Include all defaults, including buildflags.mk
include /usr/share/dpkg/default.mk
# Set unit test timeout multiplier to make slow tests
# pass on loaded builders.
export CK_TIMEOUT_MULTIPLIER=5
override_dh_auto_test:
dh_auto_test -O--no-parallel -- ARGS=--output-on-failure
# Start earlier than MySQL which has value 19
override_dh_installinit-arch:
dh_installinit -n --name=garb -- defaults 18 22
%:
dh $@
|