Errors will not terminate the script or result in a nonzero exit code.
[tinc] / debian / rules
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
15         ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc
16         $(MAKE)
17
18         touch build-stamp
19
20 clean:
21         dh_testdir
22         dh_testroot
23         rm -f build-stamp
24
25         -$(MAKE) distclean
26
27         dh_clean
28
29 install: build
30         dh_testdir
31         dh_testroot
32         dh_clean -k
33         dh_installdirs
34
35         $(MAKE) install prefix=`pwd`/debian/tmp/usr
36         mkdir -p `pwd`/debian/tmp/etc/tinc
37         cp doc/tinc.conf.sample `pwd`/debian/tmp/etc/tinc/tinc.conf
38         rm -f `pwd`/debian/tmp/usr/lib/tinc/libblowfish.so
39
40
41 # Build architecture-independent files here.
42 binary-indep: build install
43 # We have nothing to do by default.
44
45 # Build architecture-dependent files here.
46 binary-arch: build install
47 #       dh_testversion
48         dh_testdir
49         dh_testroot
50 #       dh_installdebconf       
51         dh_installdocs
52         dh_installexamples
53 #       dh_installmenu
54 #       dh_installemacsen
55 #       dh_installpam
56         dh_installinit
57 #       dh_installcron
58         dh_installmanpages
59         dh_installinfo
60 #       dh_undocumented
61         dh_installchangelogs ChangeLog
62         dh_link
63         dh_strip
64         dh_compress
65         dh_fixperms
66 #       # You may want to make some executables suid here.
67 #       dh_suidregister
68 #       dh_makeshlibs
69         dh_installdeb
70 #       dh_perl
71         dh_shlibdeps
72         dh_gencontrol
73         dh_md5sums
74         dh_builddeb
75
76 binary: binary-indep binary-arch
77 .PHONY: build clean binary-indep binary-arch binary install