File: rules

package info (click to toggle)
libtime-piece-mysql-perl 0.05-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 60 kB
  • ctags: 12
  • sloc: perl: 117; makefile: 21
file content (29 lines) | stat: -rwxr-xr-x 564 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
27
28
29
#!/usr/bin/make -f

build : build-stamp

build-stamp : Makefile.PL
	perl Makefile.PL INSTALLDIRS=vendor
	$(MAKE) test
	touch build-stamp

binary : binary-arch binary-indep

binary-arch :

binary-indep : build-stamp
	dh_testroot
	$(MAKE) PREFIX=$(CURDIR)/debian/libtime-piece-mysql-perl/usr install
	dh_perl
	dh_installchangelogs Changes
	dh_installdocs README
	dh_compress
	dh_fixperms
	dh_gencontrol
	dh_builddeb

clean : 
	if [ -f Makefile ]; then $(MAKE) clean; fi
	dh_clean Makefile Makefile.old build-stamp

.PHONY : build binary binary-arch binary-dep clean