Merge tag 'upstream/0.3.6'
[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 --no-manpage --prefix=/usr --sysconfdir=/etc --examplesdir=/usr/share/uanytun/examples && cd ..
16         touch configure-stamp
17
18 build: build-arch build-indep
19
20 build-arch: build-stamp
21 build-indep: build-stamp
22
23 build-stamp: configure-stamp
24         dh_testdir
25
26         cd src && $(MAKE) && cd ..
27
28         touch $@
29
30 clean:
31         dh_testdir
32         dh_testroot
33         rm -f build-stamp configure-stamp
34
35         # Add here commands to clean up after the build process.
36         $(MAKE) --directory=$(CURDIR)/src distclean
37         dh_clean
38
39 install: build
40         dh_testdir
41         dh_testroot
42         dh_installdirs
43
44         # Add here commands to install the package into debian/uanytun.
45         cd src && $(MAKE) DESTDIR=$(CURDIR)/debian/uanytun install && cd ..
46         # Fix unusual path:
47         mv debian/uanytun/usr/share/uanytun/examples/uanytun debian/uanytun/usr/share/uanytun/examples/config
48         echo "example configurations can be found at /usr/share/uanytun/examples/config" > debian/uanytun/etc/uanytun/README
49
50 # Build architecture-independent files here.
51 binary-indep: install
52 # We have nothing to do by default.
53
54 # Build architecture-dependent files here.
55 binary-arch: install
56         dh_testdir
57         dh_testroot
58         dh_installchangelogs ChangeLog
59         dh_installdocs
60         dh_installexamples
61         dh_installinit
62         dh_installman doc/uanytun.8
63         dh_link
64         dh_strip
65         dh_compress
66         mkdir -p debian/uanytun/usr/share/lintian/overrides/
67         cp -av debian/overrides debian/uanytun/usr/share/lintian/overrides/uanytun
68         dh_fixperms
69         find debian/uanytun -type f -name config     -exec chmod 600 {} \;
70         find debian/uanytun -type f -name post-up.sh -exec chmod 755 {} \;
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 configure