File: rules

package info (click to toggle)
libxml-atom-service-perl 0.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 148 kB
  • ctags: 20
  • sloc: perl: 209; makefile: 18
file content (26 lines) | stat: -rwxr-xr-x 417 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
25
26
#!/usr/bin/make -f

PERL   ?= /usr/bin/perl
build: build-stamp
build-stamp:
	dh build --before dh_auto_config
	$(PERL) Build.PL installdirs=vendor
	dh build --after dh_auto_config
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

.PHONY: binary binary-arch binary-indep install clean build