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
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export QT_SELECT=qt5
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- pokerth.pro
override_dh_auto_build-indep:
override_dh_auto_test-indep:
override_dh_auto_install:
# Ideally we should call make install here:
# $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp
# but upstreams makefile does not work as intended here
execute_after_dh_fixperms-indep:
find debian/pokerth-data -type f -executable | xargs chmod -x
|