1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
export QT_SELECT := qt5
%:
dh $@
override_dh_auto_configure-indep:
override_dh_auto_configure-arch:
dh_auto_configure -- DEFINES+=ACT_NO_UPDATER PKGCONFIG_OPENCV=opencv4
override_dh_auto_build-indep:
override_dh_auto_build-arch:
dh_auto_build
make locale_release
override_dh_auto_install:
dh_auto_install --destdir=$(CURDIR)/debian/actiona
override_dh_installchangelogs:
dh_installchangelogs -k CHANGELOG
override_dh_shlibdeps:
dh_shlibdeps -l/usr/lib/actiona/
|