Version 1.3.3
[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 # 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 CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
15 CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS)
16 CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS)
17 LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
18  
19 config.status: configure
20         dh_testdir
21         # Add here commands to configure the package.
22         CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
23                 LDFLAGS="$(LDFLAGS)" \
24                 ./configure --host=$(DEB_HOST_GNU_TYPE) \
25                 --build=$(DEB_BUILD_GNU_TYPE) \
26                 --mandir=\$${prefix}/share/man \
27                 --infodir=\$${prefix}/share/info \
28                 --enable-shared --with-yaz=/usr/bin \
29                 --prefix=/usr
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         cp -f /usr/share/misc/config.sub config.sub
49 endif
50 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
51         cp -f /usr/share/misc/config.guess config.guess
52 endif
53
54
55         dh_clean 
56
57 install: build
58         dh_testdir
59         dh_testroot
60         dh_clean -k 
61         dh_installdirs
62
63         # Add here commands to install the package into debian/tmp
64         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
65
66
67 # Build architecture-independent files here.
68 binary-indep: build install
69 # We have nothing to do by default.
70
71 # Build architecture-dependent files here.
72 binary-arch: build install
73         dh_testdir
74         dh_testroot
75         cp LICENSE debian/copyright
76         dh_installdocs -A README
77         dh_installchangelogs NEWS
78         dh_installdocs
79         dh_installexamples
80         mv debian/tmp/usr/share/doc/yazpp debian/tmp/usr/share/doc/yazpp-doc
81         dh_install
82 #       dh_installmenu
83 #       dh_installdebconf       
84 #       dh_installlogrotate
85 #       dh_installemacsen
86 #       dh_installpam
87 #       dh_installmime
88 #       dh_installinit
89 #       dh_installcron
90 #       dh_installinfo
91         dh_installman
92         dh_link
93         dh_strip
94         dh_compress
95         dh_fixperms
96 #       dh_perl
97 #       dh_python
98         dh_makeshlibs -V 'libyazpp4 (>= 1.3.1)'
99         dh_installdeb
100         dh_shlibdeps -l debian/libyazpp4/usr/lib
101         dh_gencontrol
102         dh_md5sums
103         dh_builddeb
104
105 binary: binary-indep binary-arch
106 .PHONY: build clean binary-indep binary-arch binary install