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.
18 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
26 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
28 #CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp
31 configure: configure-stamp
34 # Add here commands to configure the package.
35 # mkdir -p $(CMAKE_TMP_DIR);
36 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake . -DCMAKE_INSTALL_PREFIX=$(PREFIX)
42 build-stamp: configure-stamp
45 # Add here commands to compile the package.
47 #docbook-to-man debian/wavplayer.sgml > wavplayer.1
49 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
50 cat $$f > $${f%.in}; \
51 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
52 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
61 rm -f build-stamp configure-stamp
63 # Add here commands to clean up after the build process.
65 #rm -rf $(CMAKE_TMP_DIR)
68 #rm -rf test/CMakeCache.txt
70 #rm -rf test/CMakeFiles
71 rm -rf cmake_install.cmake
72 #rm -rf test/cmake_install.cmake
75 rm -rf install_manifest.txt
79 #rm -rf test/testlibqp
82 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
94 # Add here commands to install the package into debian/wavplayer.
95 $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
98 # Build architecture-independent files here.
99 binary-indep: build install
100 # We have nothing to do by default.
102 # Build architecture-dependent files here.
103 binary-arch: build install
109 dh_install --sourcedir=debian/tmp
112 # dh_installlogrotate
123 dh_strip --dbg-package=libaccounts-svc-dbg
134 binary: binary-indep binary-arch
135 .PHONY: build clean binary-indep binary-arch binary install configure