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)
17 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
26 config.status: configure
28 # Add here commands to configure the package.
29 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 --with-tclconfig=/usr/lib/tcl8.3
32 build-stamp: config.status
35 # Add here commands to compile the package.
45 # Add here commands to clean up after the build process.
47 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
48 if [! -f config.sub] ; then cp -f /usr/share/misc/config.sub config.sub ; fi
50 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
51 if [! -f config.guess] ; then cp -f /usr/share/misc/config.guess config.guess ; fi
63 # Add here commands to install the package into debian/tmp
64 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
67 # Build architecture-independent files here.
68 binary-indep: build install
69 # We have nothing to do by default.
71 # Build architecture-dependent files here.
72 binary-arch: build install
78 mv debian/tmp/usr/share/doc/idzebra debian/tmp/usr/share/doc/idzebra-doc
79 dh_install --sourcedir=debian/tmp
96 dh_makeshlibs -V 'libidzebra1.4 (>= 1.4.0)' -X mod-
98 dh_shlibdeps -l debian/libidzebra1.4/usr/lib
103 binary: binary-indep binary-arch
104 .PHONY: build clean binary-indep binary-arch binary install