Skip to content
Snippets Groups Projects
rules 427 B
Newer Older
Guido Gunther's avatar
Guido Gunther committed
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
Guido Gunther's avatar
Guido Gunther committed
	dh $@ --builddirectory=_build
override_dh_installsystemd:
	dh_installsystemd --no-start --no-enable

override_dh_systemd_start:
	dh_systemd_start --no-start --no-restart-after-upgrade

override_dh_systemd_enable:
	dh_systemd_enable --no-enable

override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
	xvfb-run ninja -C _build test
endif