~ubuntu-branches/debian/squeeze/extplorer/squeeze

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Goirand
  • Date: 2010-07-05 19:53:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100705195312-rufrbggaoi3snr7z
Tags: 2.1.0b6+dfsg-1
Initial release. (Closes: #561872)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
build:
 
4
 
 
5
clean:
 
6
        dh_testdir
 
7
        dh_testroot
 
8
 
 
9
        dh_clean
 
10
 
 
11
install:
 
12
        dh_testdir
 
13
        dh_testroot
 
14
        dh_clean
 
15
 
 
16
        $(MAKE) install DESTDIR=$(CURDIR)/debian/extplorer
 
17
 
 
18
binary-indep: install
 
19
        dh_testdir
 
20
        dh_testroot
 
21
        dh_installchangelogs CHANGELOG.txt
 
22
        dh_installdocs README.txt LICENSE_MPL.txt
 
23
        dh_install
 
24
        dh_installdebconf
 
25
        dh_compress
 
26
        dh_fixperms
 
27
        dh_installdeb
 
28
        dh_gencontrol
 
29
        dh_md5sums
 
30
        dh_builddeb
 
31
 
 
32
binary-arch: install
 
33
 
 
34
binary: binary-indep binary-arch
 
35
.PHONY: build clean binary-indep binary-arch binary install