1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/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"
|