~ubuntu-branches/ubuntu/wily/calamaris/wily

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Frauenfelder
  • Date: 2004-06-08 14:26:25 UTC
  • Revision ID: james.westby@ubuntu.com-20040608142625-5bqiw8figzmdpg8j
Tags: 2.59-1
New upstream release. Closes: #253093: New upstream version of Calamaris

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/make -f
 
2
# Made with the aid of debmake, by Christoph Lameter,
 
3
# based on the sample debian/rules file for GNU hello by Ian Jackson.
 
4
# Handmodified by P. Frauenfelder for debhelper support, 5 Sept 1998
 
5
 
 
6
#export DH_COMPAT=4
 
7
#export DH_VERBOSE=1
 
8
 
 
9
build: build-stamp
 
10
 
 
11
build-stamp:
 
12
        dh_testdir
 
13
 
 
14
        touch build-stamp
 
15
 
 
16
clean:
 
17
        dh_testdir
 
18
        dh_testroot
 
19
        rm -f build-stamp
 
20
 
 
21
        dh_clean
 
22
 
 
23
binary-indep: build
 
24
        dh_testdir
 
25
        dh_testroot
 
26
        dh_clean -k
 
27
        dh_installdirs
 
28
 
 
29
        make install DESTDIR=`pwd`/debian/tmp
 
30
 
 
31
        dh_installdocs README
 
32
        dh_installexamples EXAMPLES
 
33
        dh_installdebconf
 
34
 
 
35
#       dh_installmanpages
 
36
#       install man pages to /usr/share/man:
 
37
        install -p -m644 calamaris.1 `pwd`/debian/tmp/usr/share/man/man1
 
38
 
 
39
        dh_installchangelogs CHANGES
 
40
        dh_compress
 
41
        dh_fixperms
 
42
        dh_installdeb
 
43
        dh_gencontrol
 
44
        dh_md5sums
 
45
        dh_builddeb
 
46
 
 
47
binary-arch: build
 
48
 
 
49
source diff:
 
50
        @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
51
 
 
52
binary: binary-indep binary-arch
 
53
 
 
54
.PHONY: binary binary-arch binary-indep clean build