~ubuntu-branches/ubuntu/raring/libmodule-extractuse-perl/raring

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2009-04-25 01:29:11 UTC
  • Revision ID: james.westby@ubuntu.com-20090425012911-1p8ez3x93d86u3cn
Tags: 0.23-2
* Fix silly typo in debian/control ("perlm-modules"), thanks to Peter
  Pentchev for noticing.
* Add /me to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
P=      libmodule-extractuse-perl
 
4
D=      $(CURDIR)/debian/$P
 
5
 
 
6
build: build-stamp
 
7
build-stamp:
 
8
        dh build
 
9
        touch $@
 
10
 
 
11
clean:
 
12
        [ -f Build ] || rm -f Makefile
 
13
        dh $@
 
14
 
 
15
install: install-stamp
 
16
install-stamp: build-stamp
 
17
        dh install --until dh_auto_install
 
18
        find $D -type f -name .packlist -delete
 
19
        find $D -type d -empty -delete
 
20
        dh install --remaining
 
21
        touch $@
 
22
 
 
23
binary-arch:
 
24
 
 
25
binary-indep: install
 
26
        dh $@
 
27
 
 
28
binary: binary-arch binary-indep
 
29
 
 
30
.PHONY: binary binary-arch binary-indep install clean build