~ubuntu-branches/ubuntu/oneiric/edbrowse/oneiric

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Mario Lang
  • Date: 2003-11-01 11:33:01 UTC
  • Revision ID: james.westby@ubuntu.com-20031101113301-kvy2ci0wokdx47g1
Tags: 1.5.17-2
* debian/control:
  - Use Build-Depends-Indep and correctly depend on debhelper >= 4.
  - Update Stnadards-Version to 3.6.1.
* debian/copyright: Fix dh_make boilerplate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# Sample debian/rules that uses debhelper.
 
3
# GNU copyright 1997 to 1999 by Joey Hess.
 
4
 
 
5
# Uncomment this to turn on verbose mode.
 
6
#export DH_VERBOSE=1
 
7
 
 
8
# This is the debhelper compatibility version to use.
 
9
export DH_COMPAT=4
 
10
 
 
11
 
 
12
 
 
13
build: ;
 
14
 
 
15
clean:
 
16
        dh_testdir
 
17
        dh_testroot
 
18
        dh_clean
 
19
 
 
20
install: build
 
21
        dh_testdir
 
22
        dh_testroot
 
23
        dh_clean -k
 
24
        dh_installdirs
 
25
 
 
26
        dh_install
 
27
        chmod +x debian/edbrowse/usr/bin/edbrowse
 
28
 
 
29
# Build architecture-independent files here.
 
30
binary-indep: build install
 
31
# We have nothing to do by default.
 
32
        dh_testdir
 
33
        dh_testroot
 
34
        dh_installdocs
 
35
        dh_installexamples
 
36
#       dh_installman
 
37
        dh_installchangelogs 
 
38
        dh_link
 
39
        dh_fixperms
 
40
        dh_compress
 
41
        dh_installdeb
 
42
        dh_gencontrol
 
43
        dh_md5sums
 
44
        dh_builddeb
 
45
 
 
46
# Build architecture-dependent files here.
 
47
binary-arch: build install
 
48
 
 
49
binary: binary-indep binary-arch
 
50
.PHONY: build clean binary-indep binary-arch binary install