2024-12-22 00:48:06 +03:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
2024-12-21 22:14:00 +01:00
|
|
|
|
2024-12-22 00:48:06 +03:00
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
2024-12-21 22:14:00 +01:00
|
|
|
|
2024-12-22 00:48:06 +03:00
|
|
|
%:
|
|
|
|
dh $@
|
2024-12-21 22:14:00 +01:00
|
|
|
|
2024-12-22 00:48:06 +03:00
|
|
|
override_dh_auto_configure:
|
|
|
|
dh_auto_configure -Skf6 -- -DBUILD_TESTING=OFF
|
2024-12-21 22:14:00 +01:00
|
|
|
|
2024-12-22 00:48:06 +03:00
|
|
|
override_dh_auto_test:
|
|
|
|
# Tests require a registered logind session. :/
|
|
|
|
# If you are reading this, your help is needed to make this work in
|
|
|
|
# a reproduceable way either in the buildds or in the autopkgtests
|
|
|
|
# servers
|
|
|
|
# xvfb-run -a dh_auto_test
|
2024-12-21 22:14:00 +01:00
|
|
|
|
2024-12-22 00:48:06 +03:00
|
|
|
execute_after_dh_auto_install:
|
|
|
|
# drop development stuff
|
|
|
|
rm -rf debian/tmp/usr/include/
|
|
|
|
rm -rf debian/tmp/usr/lib/*/cmake/
|