File: rules

package info (click to toggle)
blhc 0.04%2B20140813%2Bgitac2b8ce-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 448 kB
  • ctags: 19
  • sloc: perl: 906; makefile: 11
file content (19 lines) | stat: -rwxr-xr-x 345 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

PACKAGE = blhc
PKGDIR	= $(CURDIR)/debian/$(PACKAGE)
MANDIR	= $(PKGDIR)/usr/share/man/man1

override_dh_installchangelogs:
	dh_installchangelogs NEWS

override_dh_installman:
	dh_installman
	# Move *.1p to plain *.1
	mv $(MANDIR)/blhc.1p $(MANDIR)/blhc.1
	sed -i 's/BLHC 1p/BLHC 1/' $(MANDIR)/blhc.1

%:
	dh $@

# End of file