diff options
author | B Stack <bgstack15@gmail.com> | 2019-12-20 18:18:41 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-12-20 18:18:41 +0000 |
commit | fcd816e77835cec588b88e9b9a40b8e07b7f0af3 (patch) | |
tree | 00f797e0b4bca4b11bb2601696e5a7d260fb97ac /simple-mtpfs/debian/rules | |
parent | Merge branch 'scite-bump' into 'master' (diff) | |
parent | add a few build deps, and readme (diff) | |
download | stackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.tar.gz stackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.tar.bz2 stackrpms-fcd816e77835cec588b88e9b9a40b8e07b7f0af3.zip |
Merge branch 'simple-mtpfs' into 'master'
add simple-mtpfs
See merge request bgstack15/stackrpms!106
Diffstat (limited to 'simple-mtpfs/debian/rules')
-rwxr-xr-x | simple-mtpfs/debian/rules | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/simple-mtpfs/debian/rules b/simple-mtpfs/debian/rules new file mode 100755 index 0000000..ec34512 --- /dev/null +++ b/simple-mtpfs/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DEB_BUILD_MAINT_OPTIONS=hardening=+all + +# minimise needless linking +export DEB_LDFLAGS_MAINT_APPEND= -Wl,--as-needed + +%: + dh $@ --parallel --with autoreconf + +# use --as-needed only if supported by dh-autoreconf (to simplify backporting) +DH_AS_NEEDED=$(shell dpkg --compare-versions $$(dpkg --status dh-autoreconf | grep Version | cut -d' ' -f2) ge 6 && echo --as-needed) +override_dh_autoreconf: + [ ! -x "./autogen.sh" ] || ./autogen.sh + dh_autoreconf $(DH_AS_NEEDED) |