Remove Ubuntu karmic from build
[idzebra-moved-to-github.git] / 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 # These are used for cross-compiling and for saving the configure script
10 # from having to guess our platform (since we know it already)
11 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
13
14
15 CFLAGS = -Wall -g
16
17 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
18         CFLAGS += -O0
19 else
20         CFLAGS += -O2
21 endif
22 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
23         INSTALL_PROGRAM += -s
24 endif
25
26 config.status: configure
27         dh_testdir
28         # Add here commands to configure the package.
29         CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-shared --with-yaz=/usr/bin --with-tclconfig=/usr/lib/tcl8.4
30
31 build: build-stamp
32 build-stamp:  config.status
33         dh_testdir
34
35         # Add here commands to compile the package.
36         $(MAKE) 
37
38         touch build-stamp
39
40 clean:
41         dh_testdir
42         dh_testroot
43         rm -f build-stamp 
44
45         # Add here commands to clean up after the build process.
46         -$(MAKE) distclean
47 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
48         if test ! -f config.sub; then cp -f /usr/share/misc/config.sub config.sub ; fi
49 endif
50 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
51         if test ! -f config.guess ; then cp -f /usr/share/misc/config.guess config.guess ; fi
52 endif
53
54         dh_clean 
55
56 install: build
57         dh_testdir
58         dh_testroot
59         dh_clean -k 
60         dh_installdirs
61
62         # Add here commands to install the package into debian/tmp
63         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
64
65
66 # Build architecture-independent files here.
67 binary-indep: build install
68 # We have nothing to do by default.
69
70 # Build architecture-dependent files here.
71 binary-arch: build install
72         dh_testdir
73         dh_testroot
74         dh_installchangelogs 
75         dh_installdocs
76         dh_installexamples
77         dh_install --sourcedir=debian/tmp
78 #       dh_installmenu
79 #       dh_installdebconf       
80 #       dh_installlogrotate
81 #       dh_installemacsen
82 #       dh_installpam
83 #       dh_installmime
84 #       dh_installinit
85 #       dh_installcron
86 #       dh_installinfo
87         dh_installman
88         dh_link
89         dh_strip
90         dh_compress
91         dh_fixperms
92 #       dh_perl
93 #       dh_python
94         dh_makeshlibs -V 'libidzebra-2.0 (>= 2.0.20)' -X mod-
95         dh_installdeb
96         dh_shlibdeps -L libidzebra-2.0 -l debian/libidzebra-2.0/usr/lib
97         dh_gencontrol
98         dh_md5sums
99         dh_builddeb
100
101 binary: binary-indep binary-arch
102 .PHONY: build clean binary-indep binary-arch binary install