initialise repo
[debian/orchestra.git] / debian / rules
1 #!/usr/bin/make -f
2 # Sample debian/rules that uses debhelper.
3 # This file is public domain software, originally written by Joey Hess. 
4 #
5 # This version is for packages that are architecture dependent.
6
7 # Uncomment this to turn on verbose mode.
8 #export DH_VERBOSE=1
9
10 build: build-stamp
11 build-stamp:
12         dh_testdir
13
14         make build
15
16         touch build-stamp
17
18 clean:
19         dh_testdir
20         dh_testroot
21         rm -f build-stamp
22
23         make clean
24
25         dh_clean
26
27 install: build
28         dh_testdir
29         dh_testroot
30         dh_prep
31         dh_installdirs
32
33         # Add here commands to install the package into debian/<packagename>
34         #$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install
35
36 # Build architecture-independent files here.
37 binary-indep: build install
38 # We have nothing to do by default.
39
40 # Build architecture-dependent files here.
41 binary-arch: build install
42         dh_testdir
43         dh_testroot
44         dh_installchangelogs
45         dh_installdocs
46         dh_installexamples
47         dh_install
48 #       dh_installmenu
49 #       dh_installdebconf       
50 #       dh_installlogrotate
51 #       dh_installemacsen
52 #       dh_installcatalogs
53 #       dh_installpam
54 #       dh_installmime
55         dh_installinit
56 #       dh_installcron
57 #       dh_installinfo
58 #       dh_installwm
59 #       dh_installudev
60 #       dh_lintian
61 #       dh_bugfiles
62 #       dh_undocumented
63         dh_installman
64         dh_link
65 # Strip baaaad when go programs are involved.
66 #       dh_strip
67         dh_compress
68         dh_fixperms
69 #       dh_perl
70 #       dh_makeshlibs
71         dh_installdeb
72         dh_shlibdeps
73         dh_gencontrol
74         dh_md5sums
75         dh_builddeb
76
77 binary: binary-indep binary-arch
78 .PHONY: build clean binary-indep binary-arch binary install