~ubuntu-branches/ubuntu/karmic/libhtml-entities-numbered-perl/karmic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2008-03-06 20:48:48 UTC
  • Revision ID: james.westby@ubuntu.com-20080306204848-erb9ski8yoognjji
Tags: 0.04-1
Initial Release. (Closes: #469394)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# This debian/rules file is provided as a template for normal perl
 
3
# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
 
4
# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
 
5
# be used freely wherever it is useful.
 
6
 
 
7
# Uncomment this to turn on verbose mode.
 
8
#export DH_VERBOSE=1
 
9
 
 
10
# If set to a true value then MakeMaker's prompt function will
 
11
# always return the default without waiting for user input.
 
12
export PERL_MM_USE_DEFAULT=1
 
13
 
 
14
PACKAGE=$(shell dh_listpackages)
 
15
 
 
16
ifndef PERL
 
17
PERL = /usr/bin/perl
 
18
endif
 
19
 
 
20
TMP     =$(CURDIR)/debian/$(PACKAGE)
 
21
 
 
22
build: build-stamp
 
23
build-stamp:
 
24
        dh_testdir
 
25
 
 
26
        # Add commands to compile the package here
 
27
        $(PERL) Makefile.PL INSTALLDIRS=vendor
 
28
        $(MAKE)
 
29
        $(MAKE) test
 
30
 
 
31
        touch $@
 
32
 
 
33
clean:
 
34
        dh_testdir
 
35
        dh_testroot
 
36
 
 
37
        dh_clean build-stamp install-stamp
 
38
 
 
39
        # Add commands to clean up after the build process here
 
40
        [ ! -f Makefile ] || $(MAKE) realclean
 
41
 
 
42
install: install-stamp
 
43
install-stamp: build-stamp
 
44
        dh_testdir
 
45
        dh_testroot
 
46
        dh_clean -k
 
47
 
 
48
        # Add commands to install the package into $(TMP) here
 
49
        $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 
50
 
 
51
        [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
 
52
 
 
53
        touch $@
 
54
 
 
55
binary-arch:
 
56
# We have nothing to do here for an architecture-independent package
 
57
 
 
58
binary-indep: build install
 
59
        dh_testdir
 
60
        dh_testroot
 
61
        dh_installexamples
 
62
        dh_installdocs README
 
63
        dh_installchangelogs Changes
 
64
        dh_perl
 
65
        dh_compress
 
66
        dh_fixperms
 
67
        dh_installdeb
 
68
        dh_gencontrol
 
69
        dh_md5sums
 
70
        dh_builddeb
 
71
 
 
72
source diff:
 
73
        @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
74
 
 
75
binary: binary-indep binary-arch
 
76
.PHONY: build clean binary-indep binary-arch binary