1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
package=automake1.11
version=1.11
infodir=doc
%:
dh $@ --without autoreconf
override_dh_auto_test:
# Don't run the test suite, it's old and fails.
override_dh_auto_install:
dh_auto_install --destdir=$(CURDIR)/debian/tmp
# remove automake's versions
rm -f $(CURDIR)/debian/tmp/usr/share/automake-$(version)/config.sub
rm -f \
$(CURDIR)/debian/tmp/usr/share/automake-$(version)/config.guess
# Rebuild the info files
cd $(infodir) && makeinfo automake.texi
override_dh_auto_clean:
dh_auto_clean
rm -f $(infodir)/automake-$(version).info*
|