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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
CONFIGURE_OPTS=-Dphoc_tests=disabled -Dsystemd=false
ifeq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
CONFIGURE_OPTS+=-Dgtk_doc=true -Dman=true
else
CONFIGURE_OPTS+=-Dgtk_doc=false -Dman=false
endif
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
CONFIGURE_OPTS+=-Dtests=true
else
CONFIGURE_OPTS+=-Dtests=false
endif
%:
dh $@ --builddirectory=_build
override_dh_auto_configure:
dh_auto_configure -- $(CONFIGURE_OPTS)
override_dh_auto_install:
set -e; for script in postinst postrm triggers; do \
sed -e"s/#MULTIARCH#/$(DEB_HOST_MULTIARCH)/g" \
-e"s/#ARCH#/$(DEB_HOST_ARCH)/g" \
debian/phosh.$$script.in \
> debian/phosh.$$script ; \
done
dh_auto_install
override_dh_installsystemd:
rm -f debian/phosh.service ; cp data/phosh.service debian/phosh.service
dh_installsystemd --no-start --no-enable --no-restart-on-upgrade --no-restart-after-upgrade
override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
LC_ALL=C.UTF-8 xvfb-run -a meson test -C _build --no-suite manual
endif
|