diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..24a5861 --- /dev/null +++ b/debian/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,-O1 -Wl,--warn-unresolved-symbols -Wl,--as-needed +export DEB_LDFLAGS_MAINT_STRIP = -Wl,-Bsymbolic-functions + +%: + dh $@ + +ifneq ($(DEB_HOST_ARCH_OS),linux) +CONFFLAGS = \ + -Drfkill=false \ + -Dnetwork_manager=false \ + -Dalsa=false \ + -Dcolord=false \ + -Dsystemd=false +endif + +override_dh_auto_configure: + dh_auto_configure -- \ + --libdir=/usr/lib \ + $(CONFFLAGS) + +override_dh_missing: + dh_missing --fail-missing + +override_dh_auto_test: +ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS))) +# The tests are not fatal on non-linux architectures +# See: https://bugzilla.gnome.org/show_bug.cgi?id=770684#c2 +ifeq (,$(filter $(DEB_HOST_ARCH), hurd-i386 kfreebsd-i386 kfreebsd-amd64)) + xvfb-run --auto-servernum dh_auto_test +else + xvfb-run --auto-servernum dh_auto_test || true +endif +endif + +override_dh_installchangelogs: + dh_installchangelogs -XChangeLog |