Tizen release 1.0
[apps/core/preloaded/video-player.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 CFLAGS += -Wall -g
14 LDFLAGS ?= 
15 PREFIX ?= /opt/apps/org.tizen.video-player
16 RESDIR ?= /opt/apps/org.tizen.video-player/res
17 DATADIR ?= /opt/apps/org.tizen.video-player/data
18
19 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20         CFLAGS += -O0
21 else
22         CFLAGS += -O2
23 endif
24 CFLAGS += -fpie
25 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -pie
26
27 configure: configure-stamp
28 configure-stamp:
29         dh_testdir
30         # Add here commands to configure the package.
31         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake . -DCMAKE_INSTALL_PREFIX=$(PREFIX)
32
33         touch configure-stamp
34
35
36 build: build-stamp
37
38 build-stamp: configure-stamp 
39         dh_testdir
40
41         # Add here commands to compile the package.
42         $(MAKE)
43         #docbook-to-man debian/video-player.sgml > video-player.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#@RESDIR@#$(RESDIR)#g" $${f%.in}; \
49                         sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
50     done
51
52         touch $@
53
54 clean:
55         dh_testdir
56         dh_testroot
57         rm -f build-stamp configure-stamp
58
59         # Add here commands to clean up after the build process.
60         -$(MAKE) clean
61         
62         find ./ -depth -type d -name "CMakeFiles" -exec rm {} -rf \;
63         find ./ -name "Makefile" -exec rm {} -f \;
64         find ./ -name "cmake_install.cmake" -exec rm {} -f \;
65         rm -rf CMakeCache.txt
66         rm -rf install_manifest.txt
67         rm -rf *.pc
68         rm -rf *.so
69         rm -rf org.tizen.video-player.desktop
70         rm -rf res/edc/*.edj
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/video-player.
81         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
82         execstack -c $(CURDIR)/debian/tmp/opt/apps/org.tizen.video-player/bin/video-player
83
84
85 # Build architecture-independent files here.
86 binary-indep: build install
87 # We have nothing to do by default.
88
89 # Build architecture-dependent files here.
90 binary-arch: build install
91         dh_testdir
92         dh_testroot
93         dh_installchangelogs 
94         dh_installdocs
95         dh_installexamples
96         dh_install --sourcedir=debian/tmp
97 #       dh_installmenu
98 #       dh_installdebconf       
99 #       dh_installlogrotate
100 #       dh_installemacsen
101 #       dh_installpam
102 #       dh_installmime
103 #       dh_python
104 #       dh_installinit
105 #       dh_installcron
106 #       dh_installinfo
107         dh_installman
108         dh_link
109 #       dh_strip
110         dh_strip --dbg-package=org.tizen.video-player-dbg
111         dh_compress
112         dh_fixperms
113 #       dh_perl
114 #       dh_makeshlibs
115         dh_installdeb
116         dh_shlibdeps
117         dh_gencontrol
118         dh_md5sums
119         dh_builddeb
120
121 binary: binary-indep binary-arch
122 .PHONY: build clean binary-indep binary-arch binary install configure