Adjust path of example files in README file on the fly
[debian/uanytun.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 configure: configure-stamp
13 configure-stamp:
14         dh_testdir
15         cd src && ./configure --prefix=/usr --sysconfdir=/etc --examplesdir=/usr/share/uanytun/examples && cd ..
16         touch configure-stamp
17
18 build: build-stamp
19
20 build-stamp: configure-stamp
21         dh_testdir
22
23         cd src && $(MAKE) && cd ..
24         cd doc && $(MAKE) && cd ..
25
26         touch $@
27
28 clean:
29         dh_testdir
30         dh_testroot
31         rm -f build-stamp configure-stamp
32
33         cd src && $(MAKE) distclean && cd ..
34         cd doc && $(MAKE) clean && cd ..
35
36         # drop leftover file:
37         rm -f src/tun.c
38
39         # Add here commands to clean up after the build process.
40         $(MAKE) --directory=$(CURDIR)/src distclean
41         dh_clean
42
43 install: build
44         dh_testdir
45         dh_testroot
46         dh_installdirs
47
48         # Add here commands to install the package into debian/uanytun.
49         cd src && $(MAKE) DESTDIR=$(CURDIR)/debian/uanytun install && cd ..
50         # Fix unusual path:
51         mv debian/uanytun/usr/share/uanytun/examples/uanytun debian/uanytun/usr/share/uanytun/examples/config
52         echo "example configurations can be found at /usr/share/uanytun/examples/config" > debian/uanytun/etc/uanytun/README
53
54 # Build architecture-independent files here.
55 binary-indep: install
56 # We have nothing to do by default.
57
58 # Build architecture-dependent files here.
59 binary-arch: install
60         dh_testdir
61         dh_testroot
62         dh_installchangelogs ChangeLog
63         dh_installdocs
64         dh_installexamples
65         dh_installinit
66         dh_installman doc/uanytun.8
67         dh_link
68         dh_strip
69         dh_compress
70         mkdir -p debian/uanytun/usr/share/lintian/overrides/ 
71         cp -av debian/overrides debian/uanytun/usr/share/lintian/overrides/uanytun
72         dh_fixperms
73         find debian/uanytun -type f -name config     -exec chmod 600 {} \;
74         find debian/uanytun -type f -name post-up.sh -exec chmod 755 {} \;
75         dh_installdeb
76         dh_shlibdeps
77         dh_gencontrol
78         dh_md5sums
79         dh_builddeb
80
81 binary: binary-indep binary-arch
82 .PHONY: build clean binary-indep binary-arch binary install configure