1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_installchangelogs:
dh_installchangelogs debian/CHANGELOG.upstream
override_dh_install:
dh_install
# We have to ask upstream if it is important for them that the binary is named clustalw2
mv $(CURDIR)/debian/clustalw/usr/bin/clustalw2 $(CURDIR)/debian/clustalw/usr/bin/clustalw
get-upstream-changelog:
# Get upstream changelog
cd debian; wget -N --output-document=CHANGELOG.upstream http://www.clustal.org/download/current/CHANGELOG
|