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
|
#!/usr/bin/make -f
# GNU copyright 1997 to 1999 by Joey Hess.
#export DH_VERBOSE=1
export DH_OPTIONS
%:
dh $@
VERSION := $(shell dpkg-parsechangelog | grep ^Version | cut -d' ' -f2-)
override_dh_auto_build:
$(MAKE) VERSION=$(VERSION)
override_dh_auto_clean:
$(MAKE) clean VERSION=$(VERSION)
@if [ "`echo *.deb`" != "*.deb" ]; then \
echo; \
echo "*************************************************"; \
echo "Cannot create source package with these here:"; \
ls *.deb; \
echo "*************************************************"; \
echo; \
exit 1; \
fi
override_dh_installdocs:
dh_installdocs -XTODO
|