~ubuntu-branches/ubuntu/jaunty/libxml-rss-simplegen-perl/jaunty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Axel Beckert
  • Date: 2008-03-10 21:03:55 UTC
  • Revision ID: james.westby@ubuntu.com-20080310210355-5enlke6lsy9amtlw
Tags: 11.11-1
Initial release as Debian package. (Closes: #470388)

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 TEST_FILES="t/00_about.t t/05_xmltext.t \
 
30
                                 t/10_html2xmltext.t t/30_simple_xml.t \
 
31
                                 t/40_item.t t/50_history.t t/80_basedate.t"
 
32
        touch $@
 
33
 
 
34
clean:
 
35
        dh_testdir
 
36
        dh_testroot
 
37
 
 
38
        dh_clean build-stamp install-stamp
 
39
 
 
40
        # Add commands to clean up after the build process here
 
41
        [ ! -f Makefile ] || $(MAKE) realclean
 
42
 
 
43
install: install-stamp
 
44
install-stamp: build-stamp
 
45
        dh_testdir
 
46
        dh_testroot
 
47
        dh_clean -k
 
48
 
 
49
        # Add commands to install the package into $(TMP) here
 
50
        $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 
51
 
 
52
        [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
 
53
 
 
54
        touch $@
 
55
 
 
56
binary-arch:
 
57
# We have nothing to do here for an architecture-independent package
 
58
 
 
59
binary-indep: build install
 
60
        dh_testdir
 
61
        dh_testroot
 
62
        dh_installexamples
 
63
        dh_installdocs README
 
64
        dh_installchangelogs ChangeLog
 
65
        dh_perl
 
66
        dh_compress
 
67
        dh_fixperms
 
68
        dh_installdeb
 
69
        dh_gencontrol
 
70
        dh_md5sums
 
71
        dh_builddeb
 
72
 
 
73
source diff:
 
74
        @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
75
 
 
76
binary: binary-indep binary-arch
 
77
.PHONY: build clean binary-indep binary-arch binary