1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure:
QT_SELECT=qt5 dh_auto_configure -- -DUSE_QT5=True -DWITH_DOC=$(if $(filter libdbusmenu-qt5-doc, $(shell dh_listpackages)),ON,OFF)
execute_after_dh_auto_install-indep:
# Removing embedded jquery javascript library
rm debian/tmp/usr/share/doc/libdbusmenu-qt5-doc/jquery.js
override_dh_auto_test:
# Skipping tests (can't test inside chroot)...
:
|