apply FSL(Flora Software License)
[apps/home/taskmanager.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 CXXFLAGS ?=  -Wall -g
14 LDFLAGS ?=
15 PREFIX ?= /opt/apps/org.tizen.taskmgr
16 RESDIR ?= /opt/apps/org.tizen.taaskmgr/res
17 DATADIR ?= /opt/apps/org.tizen.taskmgr/data
18
19 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20         CFLAGS += -O0
21         CXXFLAGS += -O0
22 else
23         CFLAGS += -O2
24         CXXFLAGS += -O2
25 endif
26
27 CFLAGS += -fPIC
28 CXXFLAGS += -fPIC
29
30 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--hash-style=both -Wl,--as-needed
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)
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         #docbook-to-man debian/wavplayer.sgml > wavplayer.1
50
51         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
52                 cat $$f > $${f%.in}; \
53                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
54                 sed -i -e "s#@RESDIR@#$(RESDIR)#g" $${f%.in}; \
55                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
56         done
57
58         touch $@
59
60 clean:
61         dh_testdir
62         dh_testroot
63         rm -f build-stamp configure-stamp
64
65         # Add here commands to clean up after the build process.
66         rm -rf $(CMAKE_BUILD_DIR)
67
68         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
69                 rm -f $${f%.in}; \
70         done
71
72         dh_clean
73
74 install: build
75         dh_testdir
76         dh_testroot
77         dh_clean -k 
78 #       dh_installdirs
79
80         # Add here commands to install the package into debian/wavplayer.
81         cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
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.taskmgr-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