diff options
Diffstat (limited to 'fehqlibs-deb/debian/rules')
-rwxr-xr-x | fehqlibs-deb/debian/rules | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fehqlibs-deb/debian/rules b/fehqlibs-deb/debian/rules new file mode 100755 index 0000000..de332cf --- /dev/null +++ b/fehqlibs-deb/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f +export DH_VERBOSE = 1 + +UPSTREAM_VERSION := $(shell dpkg-parsechangelog --show-field Version | cut -d- -f1) + +get-orig-source: + uscan --download-current-version + +%: + dh $@ --buildsystem=none + +override_dh_auto_clean: + -tar -xf ../fehqlibs_$(UPSTREAM_VERSION).orig.tar.gz --strip-components=1 + $(MAKE) -C src clean + sed -i '31,$$d' conf-build + +override_dh_auto_configure: + echo CFLAGS=\"-Iinclude $(CFLAGS)\" >>conf-build + $(MAKE) -C src check + +override_dh_auto_build: + LDFLAGS= $(MAKE) -C src default |