[go: up one dir, main page]

File: rules

package info (click to toggle)
automake1.10 1%3A1.10.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,224 kB
  • sloc: sh: 20,539; perl: 9,148; makefile: 1,141; ansic: 496
file content (24 lines) | stat: -rwxr-xr-x 603 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.10
version=1.10
infodir=doc

%:
	dh $@

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*