File: rules

package info (click to toggle)
libstatistics-descriptive-perl 2.6-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 84 kB
  • ctags: 24
  • sloc: perl: 339; makefile: 40
file content (52 lines) | stat: -rwxr-xr-x 1,217 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /usr/bin/make -f
#                                                       -*- makefile -*-
# debian/rules file for the Debian Linux libstatistics-descriptive-perl package
# Copyright (C) 1999 - 2002 by Dirk Eddelbuettel <edd@debian.org>

PACKAGE	:= $(shell dh_listpackages)
TMP	:= $(CURDIR)/debian/$(PACKAGE)

#export DH_VERBOSE=1

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

clean:
	dh_testdir
	dh_testroot
	[ ! -f Makefile ] || $(MAKE) distclean
	dh_clean build-stamp install-stamp

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_clean -k
	$(MAKE) install PREFIX=$(TMP)/usr
	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
	touch install-stamp

binary: binary-arch binary-indep
binary-arch:
binary-indep: install-stamp
	dh_testdir
	dh_testroot
	dh_installdocs README UserSurvey.txt
	dh_installchangelogs Changes
	dh_perl
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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