86be8cc5013e885b398fdbf01ea179205ce1b93a
[hildon] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9 SOURCE_DIR=$(CURDIR)
10
11 # These are used for cross-compiling and for saving the configure script
12 # from having to guess our platform (since we know it already)
13 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
14 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
15
16
17 CFLAGS = -Wall -g
18
19 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20         CFLAGS += -O0
21 else
22         CFLAGS += -O2
23 endif
24
25 # Use soft-float and thumb mode if it enabled. 
26 ifneq (,$(findstring thumb,$(DEB_BUILD_OPTIONS)))
27         CFLAGS += -mthumb
28 endif
29
30 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
31         INSTALL_PROGRAM += -s
32 endif
33
34 # shared library versions, option 1
35 # version=0.0.0 
36 # major=0
37 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
38 version=`ls src/.libs/lib*.so.* | \
39 awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
40
41 major=`ls src/.libs/lib*.so.* | \
42 awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
43
44 config.status: $(SOURCE_DIR)/configure
45         dh_testdir
46 #       Add here commands to configure the package.
47         CFLAGS="$(CFLAGS)" ./configure              \
48                --host=$(DEB_HOST_GNU_TYPE)          \
49                --build=$(DEB_BUILD_GNU_TYPE)        \
50                --prefix=/usr                        \
51                --mandir=\$${prefix}/share/man       \
52                --infodir=\$${prefix}/share/info     \
53                --with-doc-dir=\$${prefix}/share/doc \
54                --disable-dependency-tracking        \
55                --disable-gtk-doc
56
57 $(SOURCE_DIR)/configure:
58         AUTOGEN_SUBDIR_MODE=1 NOCONFIGURE=yes $(SOURCE_DIR)/autogen.sh
59
60
61 build: build-stamp
62 build-stamp:  config.status
63         dh_testdir
64 #       Add here commands to compile the package.
65         $(MAKE)
66         touch build-stamp
67
68 clean:
69         dh_testdir
70         dh_testroot
71         rm -f build-stamp 
72 #       Add here commands to clean up after the build process.
73         -$(MAKE) distclean
74 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
75         cp -f /usr/share/misc/config.sub config.sub
76 endif
77 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
78         cp -f /usr/share/misc/config.guess config.guess
79 endif
80         dh_clean 
81
82
83 install: build
84         dh_testdir
85         dh_testroot
86         dh_clean -k 
87         dh_installdirs
88
89 #       Add here commands to install the package into debian/build
90         $(MAKE) install DESTDIR=$(CURDIR)/debian/build
91
92         ln -s -f libhildon-1.so $(CURDIR)/debian/build/usr/lib/libhildon_1.so 
93         ln -s -f libhildon-1.so.0 $(CURDIR)/debian/build/usr/lib/libhildon_1.so.0
94         ln -s -f libhildon-1.so.0.0.0 $(CURDIR)/debian/build/usr/lib/libhildon_1.so.0.0.0 
95
96 #       for the -dbg package
97         rm -rf $(CURDIR)/debian/build/usr/lib/debug
98 #       -mkdir -p $(CURDIR)/debian/build/usr/lib/debug
99 #       -cp -vd $(CURDIR)/debian/build/usr/lib/lib*.so* $(CURDIR)/debian/build/usr/lib/debug
100
101
102 # Build architecture-independent files here.
103 binary-indep: build install
104 # We have nothing to do by default.
105
106 # Build architecture-dependent files here.
107 binary-arch: build install
108         dh_testdir
109         dh_testroot
110         dh_installdocs
111         dh_installchangelogs 
112 #       dh_installexamples
113         @if [ -d debian/build/usr/share/gtk-doc ]; then         \
114           echo "Installing gtk-doc" ;                           \
115           dh_install --sourcedir=debian/build -v ;              \
116         else                                                    \
117           echo "Skipping gtk-doc" ;                             \
118           dh_install --sourcedir=debian/build -v -Xgtk-doc ;    \
119         fi
120         dh_installman
121         dh_link
122         dh_strip --dbg-package="libhildon1"
123         dh_compress
124         dh_fixperms
125         dh_makeshlibs -V "libhildon1 (>= 1.0.1)" 
126         dh_installdeb
127         dh_shlibdeps
128         dh_gencontrol
129         dh_md5sums
130         dh_builddeb
131
132 binary: binary-indep binary-arch
133 .PHONY: build clean binary-indep binary-arch binary install