File: rules

package info (click to toggle)
automake1.11 1%3A1.11.6-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,284 kB
  • sloc: sh: 35,059; perl: 10,697; makefile: 938; ansic: 496
file content (24 lines) | stat: -rwxr-xr-x 624 bytes parent folder | download
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*