tizen beta release
[framework/web/wrt-installer.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
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17 PACKAGE_VERSION ?= $(shell sed -n "1 p" debian/changelog | sed 's/.*(\(.*\)).*/\1/')
18
19 PREFIX ?= /usr
20 DATADIR ?= /opt
21 LDFLAGS = -Wl,--rpath=$(PREFIX)/lib
22 # Please set CFLAGS only in CMakeLists.txt, as they are dependent on CMake build type.
23
24
25 ifeq (,$(findstring no,$(DPL_LOG)))
26         DPL_LOGS_STATUS = "ON"
27 else
28         DPL_LOGS_STATUS = "OFF"
29 endif
30
31 ifeq (1,$(WRT_SKIP_ACE_SUPPORT))
32     WRT_SKIP_ACE = "ON"
33 else
34     WRT_SKIP_ACE = "OFF"
35 endif
36
37 ifeq (1,$(WRT_SMACK_ENABLE))
38     SMACK_STATUS = "ON"
39 else
40     SMACK_STATUS = "OFF"
41 endif
42
43 #for building with:
44 #efl library, use TARGET=X1
45 export TARGET=X1
46
47 CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
48
49 #config.status: configure
50 config.status:
51         dh_testdir
52         # Add here commands to configure the package.
53         mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
54         cmake ${SRCDIR} -DBUILD_TYPE="${TARGET}" -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DCMAKE_BUILD_TYPE="$(BUILD_TYPE)" -DDPL_LOG=$(DPL_LOGS_STATUS) -DSMACK_ENABLED=${SMACK_STATUS} -DCMAKE_PACKAGE_VERSION="$(PACKAGE_VERSION)" -DWRT_SKIP_ACE_SUPPORT="${WRT_SKIP_ACE}" ..
55
56
57 build: build-stamp
58
59 build-stamp:  config.status
60         dh_testdir
61         # Add here commands to compile the package.
62         cd $(CMAKE_BUILD_DIR) && $(MAKE) -j 4
63         #docbook-to-man debian/ncurses.sgml > ncurses.1
64
65         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
66                 cat $$f > $${f%.in}; \
67                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
68                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
69         done
70
71         touch $@
72
73 clean:
74         dh_testdir
75         dh_testroot
76         rm -f build-stamp
77         rm -rf $(CMAKE_BUILD_DIR)
78         dh_clean
79
80 install: build
81         dh_testdir
82         dh_testroot
83         dh_clean -k
84         dh_installdirs
85
86         # Add here commands to install the package into debian/ncurses.
87         cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
88
89
90 # Build architecture-independent files here.
91 binary-indep: build install
92 # We have nothing to do by default.
93
94 # Build architecture-dependent files here.
95 binary-arch: build install
96         dh_testdir
97         dh_testroot
98         dh_installchangelogs
99         dh_installdocs
100         dh_installexamples
101         dh_install --sourcedir=debian/tmp
102 #       dh_installmenu
103 #       dh_installdebconf
104 #       dh_installlogrotate
105 #       dh_installemacsen
106 #       dh_installpam
107 #       dh_installmime
108 #       dh_python
109 #       dh_installinit
110 #       dh_installcron
111 #       dh_installinfo
112         dh_installman
113         dh_link
114         dh_strip --dbg-package=wrt-installer-dbg
115         dh_compress
116         dh_fixperms
117 #       dh_perl
118         dh_makeshlibs
119         dh_installdeb
120         dh_shlibdeps
121         dh_gencontrol
122         dh_md5sums
123         dh_builddeb
124
125 binary: binary-indep binary-arch
126 .PHONY: build clean binary-indep binary-arch binary install