Version 4.2.20
[yaz-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 # Force compat level four
10 export DH_COMPAT=4
11
12 # These are used for cross-compiling and for saving the configure script
13 # from having to guess our platform (since we know it already)
14 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
15 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16
17
18 CFLAGS = -Wall -g
19
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
21         CFLAGS += -O0
22 else
23         CFLAGS += -O2
24 endif
25 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
26         INSTALL_PROGRAM += -s
27 endif
28
29
30 config.status: configure
31         dh_testdir
32         # Add here commands to configure the package.
33         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 --enable-static --enable-tcpd --with-xslt --with-gnutls --with-icu
34
35
36 build: build-stamp
37 build-stamp:  config.status
38         dh_testdir
39
40         # Add here commands to compile the package.
41         $(MAKE)
42
43         touch build-stamp
44
45 clean:
46         dh_testdir
47         dh_testroot
48         rm -f build-stamp 
49
50         # Add here commands to clean up after the build process.
51         -$(MAKE) distclean
52 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
53         -cp -f /usr/share/misc/config.sub config.sub
54 endif
55 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
56         -cp -f /usr/share/misc/config.guess config.guess
57 endif
58
59         dh_clean 
60
61 install: build
62         dh_testdir
63         dh_testroot
64         dh_clean -k 
65         dh_installdirs
66
67         # Add here commands to install the package into debian/tmp
68         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
69
70
71 # Build architecture-independent files here.
72 binary-indep: build install
73 # We have nothing to do by default.
74
75 # Build architecture-dependent files here.
76 binary-arch: build install
77         dh_testdir
78         dh_testroot
79         cp LICENSE debian/copyright
80         dh_installdocs -A README
81         dh_installchangelogs 
82         dh_installexamples
83         mv debian/tmp/usr/share/doc/yaz debian/tmp/usr/share/doc/yaz-doc
84         dh_install 
85 #       dh_installmenu
86 #       dh_installdebconf       
87 #       dh_installlogrotate
88 #       dh_installemacsen
89 #       dh_installpam
90 #       dh_installmime
91 #       dh_installinit
92 #       dh_installcron
93 #       dh_installinfo
94         dh_installman
95         dh_link
96         dh_strip
97         dh_compress
98         dh_fixperms
99 #       dh_perl
100 #       dh_python
101         dh_makeshlibs -V 'libyaz4 (>= 4.2.17)'
102         dh_installdeb
103         dh_shlibdeps  -l debian/libyaz4/usr/lib
104         dh_gencontrol
105         dh_md5sums
106         dh_builddeb
107
108 binary: binary-indep binary-arch
109 .PHONY: build clean binary-indep binary-arch binary install