~ubuntu-branches/ubuntu/trusty/bubblemon/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Eckenfels
  • Date: 2001-11-10 03:18:08 UTC
  • Revision ID: james.westby@ubuntu.com-20011110031808-zlvkhswukmstqrsc
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

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 compatability version to use.
 
9
export DH_COMPAT=1
 
10
 
 
11
build: build-stamp
 
12
build-stamp:
 
13
        dh_testdir
 
14
        ./configure --with-all-linguas --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
15
        $(MAKE)
 
16
        touch build-stamp
 
17
 
 
18
clean:
 
19
        dh_testdir
 
20
        dh_testroot
 
21
        rm -f build-stamp config.log *~ */*~ debian/*substvars
 
22
        -$(MAKE) distclean
 
23
        dh_clean
 
24
 
 
25
install: build
 
26
        dh_testdir
 
27
        dh_testroot
 
28
        dh_clean -k
 
29
        dh_installdirs
 
30
        $(MAKE) install DESTDIR=`pwd`/debian/tmp
 
31
        $(MAKE) install DESTDIR=`pwd`/debian/tmp gnulocaledir=`pwd`/debian/tmp/usr/share/locale
 
32
 
 
33
# Build architecture-independent files here.
 
34
binary-indep: build install
 
35
# We have nothing to do by default.
 
36
 
 
37
# Build architecture-dependent files here.
 
38
binary-arch: build install
 
39
        debian/check_version
 
40
#       dh_testversion
 
41
        dh_testdir
 
42
        dh_testroot
 
43
#       dh_installdebconf       
 
44
        dh_installdocs
 
45
        dh_installexamples
 
46
#       dh_installmenu
 
47
#       dh_installemacsen
 
48
#       dh_installpam
 
49
#       dh_installinit
 
50
#       dh_installcron
 
51
        dh_installmanpages
 
52
#       dh_installinfo
 
53
#       dh_undocumented
 
54
        dh_installchangelogs
 
55
        dh_link
 
56
        dh_strip
 
57
        dh_compress
 
58
        dh_fixperms
 
59
#       dh_suidregister
 
60
#       dh_makeshlibs
 
61
        dh_installdeb
 
62
#       dh_perl
 
63
        dh_shlibdeps
 
64
        dh_gencontrol -- -isp
 
65
        dh_md5sums
 
66
        dh_builddeb
 
67
 
 
68
binary: binary-indep binary-arch
 
69
.PHONY: build clean binary-indep binary-arch binary install