Version 1.1.3 (Debian)
[yazpp-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 # shared library versions, option 1
30 version=1.0.0
31 major=1
32 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
33 #version=`ls src/.libs/lib*.so.* | \
34 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
35 #major=`ls src/.libs/lib*.so.* | \
36 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
37
38 config.status: configure
39         dh_testdir
40         # Add here commands to configure the package.
41         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
42
43
44 build: build-stamp
45 build-stamp:  config.status
46         dh_testdir
47
48         # Add here commands to compile the package.
49         $(MAKE)
50
51         touch build-stamp
52
53 clean:
54         dh_testdir
55         dh_testroot
56         rm -f build-stamp 
57
58         # Add here commands to clean up after the build process.
59         -$(MAKE) distclean
60 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
61         cp -f /usr/share/misc/config.sub config.sub
62 endif
63 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
64         cp -f /usr/share/misc/config.guess config.guess
65 endif
66
67
68         dh_clean 
69
70 install: build
71         dh_testdir
72         dh_testroot
73         dh_clean -k 
74         dh_installdirs
75
76         # Add here commands to install the package into debian/tmp
77         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
78
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         cp LICENSE debian/copyright
89         dh_installdocs -A README
90         dh_installchangelogs NEWS
91         dh_installdocs
92         dh_installexamples
93         mv debian/tmp/usr/share/doc/yazpp debian/tmp/usr/share/doc/yazpp-doc
94         dh_install
95 #       dh_installmenu
96 #       dh_installdebconf       
97 #       dh_installlogrotate
98 #       dh_installemacsen
99 #       dh_installpam
100 #       dh_installmime
101 #       dh_installinit
102 #       dh_installcron
103 #       dh_installinfo
104         dh_installman
105         dh_link
106         dh_strip
107         dh_compress
108         dh_fixperms
109 #       dh_perl
110 #       dh_python
111         dh_makeshlibs -V 'libyazpp3 (>= 1.1.3)'
112         dh_installdeb
113         dh_shlibdeps -l debian/libyazpp3/usr/lib
114         dh_gencontrol
115         dh_md5sums
116         dh_builddeb
117
118 binary: binary-indep binary-arch
119 .PHONY: build clean binary-indep binary-arch binary install