From 4b03fbc63982cf96584714fa00efe30f0cbd9888 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 17 Dec 2019 22:16:43 -0500 Subject: simple-mtpfs dpkg rc1 Used for obs attempt 1. --- simple-mtpfs/debian/rules | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 simple-mtpfs/debian/rules (limited to 'simple-mtpfs/debian/rules') 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) -- cgit