#!/usr/bin/make -f PACKAGE = qpxtool DEBIAN_PATH := $(abspath $(dir $(MAKEFILE_LIST))) USCAN_REPORT = $(shell uscan --noconf --report --dehs $(DEBIAN_PATH)) CUR_VER = $(shell echo "$(USCAN_REPORT)" | sed -n 's/.*\(.*\)<\/upstream-version>.*/\1/p') CUR_URL = $(shell echo "$(USCAN_REPORT)" | sed -n 's/.*\(.*\)<\/upstream-url>.*/\1/p') LDFLAGS += -Wl,--as-needed %: dh $@ --list-missing override_dh_auto_configure: ./configure --prefix=/usr --libdir=/usr/lib --mandir=/usr/share/man get-orig-source: wget -c "$(CUR_URL)" -O "$(PACKAGE)_$(CUR_VER).orig.tar.bz2"