* Bumped Standards to 4.3.0, no changes needed * Dropped d/compat, use debhelper-compat = 12, no changes needed * Fixed years in d/copyright * Removed fix-reading-config.patch, applied upstream * Bumped minimum version libqt5xdg-dev (>= 3.3.0~) * Bumped minimum version libqt5xdgiconloader-dev (>= 3.3.0~) * Added d/upstream/metadata
20 lines
425 B
Makefile
Executable File
20 lines
425 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE=1
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
export LC_ALL=C.UTF-8
|
|
|
|
%:
|
|
dh ${@} --buildsystem=cmake
|
|
|
|
override_dh_install:
|
|
rm -f $(currdir)/debian/screengrab/usr/share/doc/screengrab/LICENSE.txt
|
|
dh_install
|
|
|
|
override_dh_makeshlibs:
|
|
# do nothing
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo
|