~ubuntu-branches/ubuntu/precise/libnet-sftp-foreign-perl/precise

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2008-06-18 18:55:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080618185525-bnfip6qbklllevj6
Tags: 1.38+dfsg-1
* New upstream release.
* Set Standards-Version to 3.8.0; rename debian/README.Debian-source to
  debian/README.source; fix a typo in debian/README.source.
* Switch from cdbs to debhelper 7; don't install README any more; install
  samples.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
include /usr/share/cdbs/1/rules/debhelper.mk
3
 
include /usr/share/cdbs/1/class/perlmodule.mk
4
 
 
5
 
install/libnet-sftp-foreign-perl::
6
 
        [ ! -d debian/libnet-sftp-foreign-perl/usr/lib/perl5 ] || rmdir --parents --ignore-fail-on-non-empty --verbose debian/libnet-sftp-foreign-perl/usr/lib/perl5
7
2
 
8
3
get-orig-source:
9
4
        uscan --verbose --force-download
 
5
 
 
6
build: build-stamp
 
7
build-stamp:
 
8
        dh build
 
9
        touch $@
 
10
 
 
11
clean:
 
12
        dh $@
 
13
 
 
14
install: install-stamp
 
15
install-stamp: build-stamp
 
16
        dh install
 
17
        touch $@
 
18
 
 
19
binary-arch:
 
20
 
 
21
binary-indep: install
 
22
        dh $@
 
23
 
 
24
binary: binary-arch binary-indep
 
25
 
 
26
.PHONY: binary binary-arch binary-indep install clean build get-orig-source