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 configure: configure-stamp
31 # Add here commands to configure the package.
32 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake . -DCMAKE_INSTALL_PREFIX=$(PREFIX)
38 build-stamp: configure-stamp
41 # Add here commands to compile the package.
43 #docbook-to-man debian/wavplayer.sgml > wavplayer.1
45 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
46 cat $$f > $${f%.in}; \
47 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
48 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
57 rm -f build-stamp configure-stamp
59 # Add here commands to clean up after the build process.
63 rm -rf cmake_install.cmake
65 rm -rf install_manifest.txt
67 rm -rf ./pm_event/CMakeCache.txt
68 rm -rf ./pm_event/CMakeFiles
69 rm -rf ./pm_event/cmake_install.cmake
70 rm -rf ./pm_event/Makefile
71 rm -rf ./pm_event/install_manifest.txt
72 rm -rf ./pm_event/pm_event
74 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
78 for f in `find $(CURDIR)/ -name "*.in"`; do \
91 # Add here commands to install the package into debian/wavplayer.
92 $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
94 mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/
95 mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/
97 ln -s ../init.d/power_manager.sh $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/S35power-manager
98 ln -s ../init.d/power_manager.sh $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/S00power-manager
101 # Build architecture-independent files here.
102 binary-indep: build install
103 # We have nothing to do by default.
105 # Build architecture-dependent files here.
106 binary-arch: build install
112 dh_install --sourcedir=debian/tmp
115 # dh_installlogrotate
126 dh_strip --dbg-package=power-manager-bin-dbg
137 binary: binary-indep binary-arch
138 .PHONY: build clean binary-indep binary-arch binary install configure patch unpatch