2015-08-15 19:54:16 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2016-01-30 03:19:42 +01:00
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
2015-09-08 00:57:21 +02:00
|
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
2016-08-08 00:19:36 +08:00
|
|
|
export LC_ALL=C.UTF-8
|
2015-09-08 00:57:21 +02:00
|
|
|
|
2015-08-15 19:54:16 +02:00
|
|
|
%:
|
2018-08-18 15:27:13 +02:00
|
|
|
dh ${@} --buildsystem=cmake
|
2015-08-15 19:54:16 +02:00
|
|
|
|
|
|
|
override_dh_install:
|
2015-09-08 00:57:21 +02:00
|
|
|
rm -f $(currdir)/debian/screengrab/usr/share/doc/screengrab/LICENSE.txt
|
2015-08-15 19:54:16 +02:00
|
|
|
dh_install
|
|
|
|
|
|
|
|
override_dh_makeshlibs:
|
|
|
|
# do nothing
|
2017-09-26 21:45:56 +02:00
|
|
|
|
|
|
|
override_dh_auto_configure:
|
2019-12-24 14:09:08 +01:00
|
|
|
dh_auto_configure -- \
|
|
|
|
-DSG_DBUS_NOTIFY=ON \
|
|
|
|
-DSG_EXT_EDIT=ON \
|
|
|
|
-DSG_GLOBALSHORTCUTS=OFF \
|
|
|
|
-DUPDATE_TRANSLATIONS=OFF \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|