#!/usr/bin/make -f # You must remove unused comment lines for the released package. export DH_VERBOSE = 1 #export DEB_BUILD_MAINT_OPTIONS = hardening=+all #export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed UPSTREAM_VERSION := $(shell dpkg-parsechangelog --show-field Version | cut -d- -f1) get-orig-source: uscan --download-current-version --no-symlink tar -xf ../ucspi-ssl-$(UPSTREAM_VERSION).tgz --strip-components=3 mv ucspi-ssl-$(UPSTREAM_VERSION)/ ucspi-ssl rm ucspi-ssl/conf-cc tar -czf ../ucspi-ssl_$(UPSTREAM_VERSION).orig.tar.gz ucspi-ssl rm -r ucspi-ssl/ %: dh $@ --buildsystem=none override_dh_auto_clean: -tar -xf ../ucspi-ssl_$(UPSTREAM_VERSION).orig.tar.gz --strip-components=1 --skip-old-files rm -f conf-cc $(MAKE) -C src clean override_dh_auto_configure: echo "$(CC) `pkg-config -cflags qlibs` $(CFLAGS)" >conf-cc override_dh_auto_build: $(MAKE) -C src default