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 --with-yazpp=/usr/bin
35 #--infodir=\$${prefix}/share/info --enable-shared --enable-static --with-xslt
39 build-stamp: config.status
42 # Add here commands to compile the package.
52 # Add here commands to clean up after the build process.
54 #ifneq "$(wildcard /usr/share/misc/config.sub)" ""
55 # -cp -f /usr/share/misc/config.sub config.sub
57 #ifneq "$(wildcard /usr/share/misc/config.guess)" ""
58 # -cp -f /usr/share/misc/config.guess config.guess
69 # Add here commands to install the package into debian/tmp
70 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
73 # Build architecture-independent files here.
74 binary-indep: build install
75 # We have nothing to do by default.
77 # Build architecture-dependent files here.
78 binary-arch: build install
81 dh_installdocs -A README
84 mv debian/tmp/usr/share/doc/metaproxy debian/tmp/usr/share/doc/metaproxy-doc
85 mkdir -p debian/tmp/etc/metaproxy
86 cp debian/metaproxy.xml debian/tmp/etc/metaproxy/metaproxy.xml
104 dh_makeshlibs -V 'libmetaproxy4 (>= 1.3.12)'
106 dh_shlibdeps -l debian/libmetaproxy4/usr/lib
111 binary: binary-indep binary-arch
112 .PHONY: build clean binary-indep binary-arch binary install