File: rules

package info (click to toggle)
prinseq-lite 0.20.4-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,600 kB
  • sloc: perl: 8,215; sh: 67; makefile: 15
file content (21 lines) | stat: -rwxr-xr-x 405 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
#!/usr/bin/make -f
export DH_VERBOSE = 1
export LC_ALL=C.UTF-8

include /usr/share/dpkg/default.mk

PROGRAMS = $(DEB_SOURCE) prinseq-graphs prinseq-graphs-noPCA

%:
	dh $@

override_dh_installman:
	set -e \
	; for PROG in $(PROGRAMS) \
	; do pod2man -c "$${PROG}" "$${PROG}.pl" "debian/$${PROG}.pl.1" \
	; done
	dh_installman --language=C

override_dh_clean:
	rm -vf $(PROGRAMS:%=debian/%.pl.1)
	dh_clean