~ubuntu-branches/ubuntu/saucy/disper/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Cheng
  • Date: 2011-07-17 22:30:03 UTC
  • Revision ID: james.westby@ubuntu.com-20110717223003-e000zieh4kgerk01
Tags: upstream-0.3.0
ImportĀ upstreamĀ versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
# Sample debian/rules that uses debhelper.
 
4
# GNU copyright 1997 to 1999 by Joey Hess.
 
5
 
 
6
# Uncomment this to turn on verbose mode.
 
7
#export DH_VERBOSE=1
 
8
export DH_COMPAT=4
 
9
export DH_OPTIONS
 
10
 
 
11
build: build-stamp
 
12
 
 
13
build-stamp:
 
14
        dh_testdir
 
15
        $(MAKE) PREFIX=/usr DESTDIR=$(CURDIR)/debian/disper
 
16
        touch build-stamp
 
17
 
 
18
clean:
 
19
        $(MAKE) clean
 
20
        dh_testdir
 
21
        dh_testroot
 
22
        rm -f build-stamp configure-stamp
 
23
        dh_clean 
 
24
 
 
25
install: build
 
26
        dh_testdir
 
27
        dh_testroot
 
28
        dh_clean -k 
 
29
        $(MAKE) install PREFIX=/usr DESTDIR=$(CURDIR)/debian/disper
 
30
 
 
31
binary-arch: build install
 
32
 
 
33
binary-indep: build install
 
34
        dh_testdir
 
35
        dh_testroot
 
36
        dh_installdocs
 
37
        dh_installman disper.1
 
38
        dh_installchangelogs
 
39
        dh_link
 
40
        dh_strip
 
41
        dh_compress
 
42
        dh_fixperms
 
43
        dh_pysupport
 
44
        dh_installdeb
 
45
        dh_shlibdeps
 
46
        dh_gencontrol
 
47
        dh_md5sums
 
48
        dh_builddeb
 
49
 
 
50
binary: binary-indep binary-arch
 
51
.PHONY: build clean binary-indep binary-arch binary install configure