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 # Force compat level four
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)
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
25 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
30 config.status: configure
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-openssl
37 build-stamp: config.status
40 # Add here commands to compile the package.
50 # Add here commands to clean up after the build process.
52 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
53 -cp -f /usr/share/misc/config.sub config.sub
55 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
56 -cp -f /usr/share/misc/config.guess config.guess
67 # Add here commands to install the package into debian/tmp
68 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
71 # Build architecture-independent files here.
72 binary-indep: build install
73 # We have nothing to do by default.
75 # Build architecture-dependent files here.
76 binary-arch: build install
79 cp LICENSE debian/copyright
80 dh_installdocs -A README
83 mv debian/tmp/usr/share/doc/yaz debian/tmp/usr/share/doc/yaz-doc
101 dh_makeshlibs -V 'libyaz (>= 2.1.39)'
103 dh_shlibdeps -l debian/libyaz/usr/lib
108 binary: binary-indep binary-arch
109 .PHONY: build clean binary-indep binary-arch binary install