3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
6 # Uncomment this to turn on verbose mode.
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)
15 CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
16 CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS)
17 CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS)
18 LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
20 config.status: configure
22 # Add here commands to configure the package.
23 CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
24 LDFLAGS="$(LDFLAGS)" \
25 ./configure --host=$(DEB_HOST_GNU_TYPE) \
26 --build=$(DEB_BUILD_GNU_TYPE) \
27 --mandir=\$${prefix}/share/man \
28 --infodir=\$${prefix}/share/info \
29 --enable-shared --enable-static --enable-tcpd \
30 --with-xslt --with-gnutls --with-icu \
34 build-stamp: config.status
37 # Add here commands to compile the package.
47 # Add here commands to clean up after the build process.
49 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
50 -cp -f /usr/share/misc/config.sub config.sub
52 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
53 -cp -f /usr/share/misc/config.guess config.guess
64 # Add here commands to install the package into debian/tmp
65 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
68 # Build architecture-independent files here.
69 binary-indep: build install
70 # We have nothing to do by default.
72 # Build architecture-dependent files here.
73 binary-arch: build install
76 cp LICENSE debian/copyright
77 dh_installdocs -A README
80 mv debian/tmp/usr/share/doc/yaz debian/tmp/usr/share/doc/yaz-doc
98 dh_makeshlibs -V 'libyaz4 (>= 4.2.48)'
100 dh_shlibdeps -l debian/libyaz4/usr/lib
105 binary: binary-indep binary-arch
106 .PHONY: build clean binary-indep binary-arch binary install