1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export QT_SELECT = qt5
BUILDDIR = _build/
%:
dh $@ --buildsystem=qmake --builddirectory=$(BUILDDIR)
override_dh_clean:
dh_clean
find . -name "*.qm" -delete
override_dh_auto_configure:
dh_auto_configure -- ../OSCAR_QT.pro
# Upstream ships with a 'history' directory containing ancient code.
# We are not interested in installing it.
override_dh_installchangelogs:
dh_installchangelogs --exclude=history
|