Completed 'Build=Depends' (validated with pbuilder)
[senf.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 debian_build=1
13 export debian_build
14
15 CFLAGS = -Wall -g
16
17 CONCURRENCY_LEVEL ?= 1
18
19 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20         CFLAGS += -O0
21 else
22         CFLAGS += -O2
23 endif
24
25 # shared library versions, option 1
26 version=2.0.5
27 major=2
28 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
29 #version=`ls src/.libs/lib*.so.* | \
30 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
31 #major=`ls src/.libs/lib*.so.* | \
32 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
33
34 destdir=$(CURDIR)/debian/tmp
35
36 configure: configure-stamp
37 configure-stamp:
38         dh_testdir
39 #       # Add here commands to configure the package.
40         touch configure-stamp
41
42
43 build: build-stamp
44 build-stamp: configure-stamp 
45         dh_testdir
46 #       # Add here commands to compile the package.
47         scons -j $(CONCURRENCY_LEVEL) all final=1
48         touch $@
49
50 clean:
51         dh_testdir
52         dh_testroot
53         rm -f build-stamp configure-stamp
54 #       # Add here commands to clean up after the build process.
55         -scons -c all
56         dh_clean 
57
58 install: build
59         dh_testdir
60         dh_testroot
61         dh_clean -k 
62         dh_installdirs
63 #       # Add here commands to install the package into debian/tmp
64         scons install_all final=1\
65                 PREFIX='$(destdir)/usr' \
66                 DOCINSTALLDIR='$$PREFIX/share/doc/libsenf-doc'
67 #       We need to install the example sourcecode
68         find Examples \( -name "*.hh" -o -name "*.cc" \) -printf "%P\n" | \
69                 while read src; do \
70                         dir="$(destdir)/usr/share/doc/libsenf-doc/examples/$$(dirname "$$src")"; \
71                         mkdir -p "$$dir"; \
72                         cp "Examples/$$src" "$$dir"; \
73                 done
74
75 # Build architecture-independent files here.
76 binary-indep: build install
77 # We have nothing to do by default.
78
79 # Build architecture-dependent files here.
80 binary-arch: build install
81         dh_testdir
82         dh_testroot
83         dh_installchangelogs 
84         dh_installdocs
85         dh_installexamples
86         dh_install
87 #       dh_installmenu
88 #       dh_installdebconf       
89 #       dh_installlogrotate
90 #       dh_installemacsen
91 #       dh_installpam
92 #       dh_installmime
93 #       dh_installinit
94 #       dh_installcron
95 #       dh_installinfo
96         dh_installman
97         dh_link
98         dh_strip
99         dh_compress
100         dh_fixperms
101 #       dh_perl
102 #       dh_python
103 #       dh_makeshlibs
104         dh_installdeb
105         dh_shlibdeps
106         dh_gencontrol
107         dh_md5sums
108         dh_builddeb
109
110 binary: binary-indep binary-arch
111 .PHONY: build clean binary-indep binary-arch binary install configure