3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 # Uncomment this to turn on verbose mode.
12 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
13 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
23 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
31 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
33 CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp
35 configure: configure-stamp
38 # Add here commands to configure the package.
40 mkdir -p $(CMAKE_TMP_DIR);
41 cd $(CMAKE_TMP_DIR); CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX)
46 build-stamp: configure-stamp
49 # Add here commands to compile the package.
50 cd $(CMAKE_TMP_DIR) && $(MAKE)
52 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
53 cat $$f > $${f%.in}; \
54 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
55 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
64 rm -f build-stamp configure-stamp
66 # Add here commands to clean up after the build process.
70 rm -rf cmake_install.cmake
72 rm -rf install_manifest.txt
74 rm -rf $(CMAKE_TMP_DIR)
76 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
88 # Add here commands to install the package into debian/msg-service.
89 cd $(CMAKE_TMP_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
90 mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/
91 ln -s ../init.d/msg-server $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/S70msg-server
92 mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/
93 ln -s ../init.d/msg-server $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/S70msg-server
95 # Build architecture-independent files here.
96 binary-indep: build install
97 # We have nothing to do by default.
99 # Build architecture-dependent files here.
100 binary-arch: build install
106 dh_install --sourcedir debian/tmp
110 # dh_installlogrotate
120 dh_strip --dbg-package=libslp-msg-service-0-dbg
131 binary: binary-indep binary-arch
132 .PHONY: build clean binary-indep binary-arch binary install configure