079eb49b035e74585be0aa15e7c5ea14aa01fefc
[apps/home/volume-app.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
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.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 CFLAGS ?= -Wall -g
13 LDFLAGS ?=
14 PREFIX ?= /opt/apps/org.tizen.volume
15 RESDIR ?= /opt/apps/org.tizen.volume/res
16 DATADIR ?= /opt/apps/org.tizen.volume/data
17
18 #ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
19 #       CFLAGS += -O0
20 #else
21 #       CFLAGS += -O2
22 #endif
23 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
24         BUILD_TYPE=Debug
25 else
26         BUILD_TYPE=Release
27 endif
28
29 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
30
31 CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
32
33 configure: configure-stamp
34 configure-stamp:
35         dh_testdir
36         # Add here commands to configure the package.
37         mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
38         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX="$(PREFIX)" -DCMAKE_BUILD_TYPE="$(BUILD_TYPE)"
39
40         touch configure-stamp
41
42 build: build-stamp
43
44 build-stamp: configure-stamp 
45         dh_testdir
46
47         # Add here commands to compile the package.
48         cd $(CMAKE_BUILD_DIR) && $(MAKE)
49
50         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
51                 cat $$f > $${f%.in}; \
52                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
53                 sed -i -e "s#@RESDIR@#$(RESDIR)#g" $${f%.in}; \
54                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
55         done
56
57         touch $@
58
59 clean:
60         dh_testdir
61         dh_testroot
62         rm -f build-stamp configure-stamp
63
64         # Add here commands to clean up after the build process.
65         rm -rf $(CMAKE_BUILD_DIR)
66
67         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
68                 rm -f $${f%.in}; \
69         done
70
71         dh_clean 
72
73 install: build
74         dh_testdir
75         dh_testroot
76         dh_clean -k 
77 #       dh_installdirs
78
79         # Add here commands to install the package into debian/wavplayer.
80         cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
81
82
83 # Build architecture-independent files here.
84 binary-indep: build install
85 # We have nothing to do by default.
86
87 # Build architecture-dependent files here.
88 binary-arch: build install
89         dh_testdir
90         dh_testroot
91 #       dh_installchangelogs 
92 #       dh_installdocs
93 #       dh_installexamples
94         dh_install --sourcedir=debian/tmp
95 #       dh_installmenu
96 #       dh_installdebconf       
97 #       dh_installlogrotate
98 #       dh_installemacsen
99 #       dh_installpam
100 #       dh_installmime
101 #       dh_python
102 #       dh_installinit
103 #       dh_installcron
104 #       dh_installinfo
105         dh_installman
106         dh_link
107         dh_strip --dbg-package=org.tizen.volume-dbg
108         dh_compress
109         dh_fixperms
110 #       dh_perl
111         dh_makeshlibs
112         dh_installdeb
113         dh_shlibdeps
114         dh_gencontrol
115         dh_md5sums
116         dh_builddeb
117
118 binary: binary-indep binary-arch
119 .PHONY: build clean binary-indep binary-arch binary install configure