Tizen 2.0 Release
[apps/home/minicontrol.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 -Werror -Winline
13 LDFLAGS ?=
14 PREFIX ?= /usr
15 DATADIR ?= /opt
16 PROJECT_NAME ?= minicontrol
17
18 BUILDDIR ?= $(CURDIR)/cmake-tmp
19
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
21         CFLAGS += -O0
22 else
23         CFLAGS += -O2
24 endif
25
26 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -lm
27
28 configure: configure-stamp
29 configure-stamp:
30         dh_testdir
31         # Add here commands to configure the package.
32         mkdir -p $(BUILDDIR) && cd $(BUILDDIR) && CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX)
33
34         touch configure-stamp
35
36 build: build-stamp
37
38 build-stamp: configure-stamp
39         dh_testdir
40
41         # Add here commands to compile the package.
42         cd $(BUILDDIR) && $(MAKE)
43         #docbook-to-man debian/wavplayer.sgml > wavplayer.1
44
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#@PROJECT_NAME@#$(PROJECT_NAME)#g" $${f%.in}; \
49                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
50         done
51
52
53         touch $@
54
55 clean:
56         dh_testdir
57         dh_testroot
58         rm -f build-stamp configure-stamp
59
60         # Add here commands to clean up after the build process.
61         rm -rf $(BUILDDIR)
62         #rm -rf CMakeCache.txt CMakeFiles cmake_install.cmake Makefile install_manifest.txt
63
64         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
65                 rm -f $${f%.in}; \
66         done
67
68         dh_clean
69
70 install: build
71         dh_testdir
72         dh_testroot
73         dh_clean -k
74         dh_installdirs
75
76         # Add here commands to install the package into debian/wavplayer.
77         cd $(BUILDDIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
78
79
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
83
84 # Build architecture-dependent files here.
85 binary-arch: build install
86         dh_testdir
87         dh_testroot
88         dh_installchangelogs
89         dh_installdocs
90         dh_installexamples
91         dh_install --sourcedir=debian/tmp
92 #       dh_installmenu
93 #       dh_installdebconf
94 #       dh_installlogrotate
95 #       dh_installemacsen
96 #       dh_installpam
97 #       dh_installmime
98 #       dh_python
99 #       dh_installinit
100 #       dh_installcron
101 #       dh_installinfo
102         dh_installman
103         dh_link
104         dh_strip --dbg-package=libminicontrol-dbg
105         dh_compress
106         dh_fixperms
107 #       dh_perl
108         dh_makeshlibs
109         dh_installdeb
110         dh_shlibdeps
111         dh_gencontrol
112         dh_md5sums
113         dh_builddeb
114
115 binary: binary-indep binary-arch
116 .PHONY: build clean binary-indep binary-arch binary install configure