#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DEB_BUILD_MAINT_OPTIONS=hardening=+all %: dh $@ override_dh_autoreconf: dh_autoreconf -X./COPYING include /usr/share/dpkg/default.mk get-orig-source: set -e; \ t=$$(mktemp -d) || exit 1; \ trap "rm -rf -- '$$t'" EXIT; \ d="$$t/$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).orig"; \ mkdir "$$d"; \ ( cd "$$d"; \ wget \ ftp://ftp.ncbi.nih.gov/pub/seg/seg/README\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/genwin.c\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/genwin.h\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/hiseg.c\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/lnfac.h\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/makefile\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/seg.c\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/seg.doc; \ ); \ GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "./$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz" -C "$$t" "$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).orig"