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)
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)
19 config.status: configure
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 --with-yazpp=/usr/bin --without-usemarcon \
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 # -cp -f /usr/share/misc/config.sub config.sub
50 #ifneq "$(wildcard /usr/share/misc/config.guess)" ""
51 # -cp -f /usr/share/misc/config.guess config.guess
62 # Add here commands to install the package into debian/tmp
63 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
66 # Build architecture-independent files here.
67 binary-indep: build install
68 # We have nothing to do by default.
70 # Build architecture-dependent files here.
71 binary-arch: build install
74 dh_installdocs -A README
77 mv debian/tmp/usr/share/doc/metaproxy debian/tmp/usr/share/doc/metaproxy-doc
78 mkdir -p debian/tmp/etc/metaproxy
79 cp debian/metaproxy.xml debian/tmp/etc/metaproxy/metaproxy.xml
80 cp rpm/metaproxy.user debian/tmp/etc/metaproxy/metaproxy.user
98 dh_makeshlibs -V 'libmetaproxy4 (>= 1.3.28)'
100 dh_shlibdeps -l debian/libmetaproxy4/usr/lib
105 binary: binary-indep binary-arch
106 .PHONY: build clean binary-indep binary-arch binary install