ea893a06902bb6f5b80012bf2d4ca661c87fb1a6
[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         rm -f Doxyfile.local SConfig local_config.hh
41 #       If needed, we could create new files 'Doxyfile.local',
42 #       'SConfig' and/or 'local_config.hh' here.  We don't remove them
43 #       in 'clean' to allow building a source package from an
44 #       individually configured svn working copy.
45         touch configure-stamp
46
47 build: build-stamp
48 build-stamp: configure-stamp 
49         dh_testdir
50 #       # Add here commands to compile the package.
51         scons -j $(CONCURRENCY_LEVEL) final=1
52         scons -j $(CONCURRENCY_LEVEL) all_docs final=1
53         touch $@
54
55 clean:
56         dh_testdir
57         dh_testroot
58         rm -f build-stamp configure-stamp
59 #       # Add here commands to clean up after the build process.
60         -scons -c all
61         dh_clean
62
63 install: build
64         dh_testdir
65         dh_testroot
66         dh_clean -k 
67         dh_installdirs
68 #       # Add here commands to install the package into debian/tmp
69         scons  install_all final=1\
70                 PREFIX='$(destdir)/usr' \
71                 DOCINSTALLDIR='$$PREFIX/share/doc/libsenf-doc'
72 #       We need to install the example sourcecode
73         find Examples \( -name "*.hh" -o -name "*.cc" \) -printf "%P\n" | \
74                 while read src; do \
75                         dir="$(destdir)/usr/share/doc/libsenf-doc/examples/$$(dirname "$$src")"; \
76                         mkdir -p "$$dir"; \
77                         cp "Examples/$$src" "$$dir"; \
78                 done
79
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
83
84 # Build architecture-dependent files here.
85 binary-arch: build install
86         dh_testdir
87         dh_testroot
88         dh_installchangelogs 
89         dh_installdocs
90         dh_installexamples
91         dh_install
92 #       dh_installmenu
93 #       dh_installdebconf       
94 #       dh_installlogrotate
95 #       dh_installemacsen
96 #       dh_installpam
97 #       dh_installmime
98 #       dh_installinit
99 #       dh_installcron
100 #       dh_installinfo
101         dh_installman
102         dh_link
103         dh_strip
104         dh_compress
105         dh_fixperms
106 #       dh_perl
107 #       dh_python
108 #       dh_makeshlibs
109         dh_installdeb
110         dh_shlibdeps
111         dh_gencontrol
112         dh_md5sums
113         dh_builddeb
114
115 binary: binary-indep binary-arch
116 .PHONY: build clean binary-indep binary-arch binary install configure