a259e2e01d2dcfd5f6c564355e388283bf3613af
[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
53 # Build architecture-independent files here.
54 binary-indep: install
55 # We have nothing to do by default.
56
57 # Build architecture-dependent files here.
58 binary-arch: install
59         dh_testdir
60         dh_testroot
61         dh_installchangelogs ChangeLog
62         dh_installdocs
63         dh_installexamples
64         dh_installinit
65         dh_installman doc/uanytun.8
66         dh_link
67         dh_strip
68         dh_compress
69         mkdir -p debian/uanytun/usr/share/lintian/overrides/ 
70         cp -av debian/overrides debian/uanytun/usr/share/lintian/overrides/uanytun
71         dh_fixperms
72         find debian/uanytun -type f -name config     -exec chmod 600 {} \;
73         find debian/uanytun -type f -name post-up.sh -exec chmod 755 {} \;
74         dh_installdeb
75         dh_shlibdeps
76         dh_gencontrol
77         dh_md5sums
78         dh_builddeb
79
80 binary: binary-indep binary-arch
81 .PHONY: build clean binary-indep binary-arch binary install configure