Depends on hildon-desktop-python-loader
[callnotify] / 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
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
15         CFLAGS += -O0
16 else
17         CFLAGS += -O2
18 endif
19
20 configure: configure-stamp
21 configure-stamp:
22         dh_testdir
23         # Add here commands to configure the package.
24
25         touch configure-stamp
26
27 build: build-stamp
28
29 build-stamp: configure-stamp
30         dh_testdir
31
32         gcc $(CFLAGS) $(shell pkg-config --cflags --libs hildon-control-panel hildon-1 libosso) -shared src/usr/lib/hildon-control-panel/libcallnotify.c -o src/usr/lib/hildon-control-panel/libcallnotify.so
33
34         touch build-stamp
35
36 clean:
37         dh_testdir
38         dh_testroot
39         rm -f build-stamp configure-stamp
40         rm -f src/usr/lib/hildon-control-panel/libcallnotify.so
41         dh_clean
42
43 install: build
44         dh_testdir
45         dh_testroot
46         dh_clean -k
47         dh_installdirs
48
49         # ======================================================
50         #$(MAKE) DESTDIR="$(CURDIR)/debian/callnotify" install
51         mkdir -p "$(CURDIR)/debian/callnotify"
52
53         mkdir -p "$(CURDIR)/debian/callnotify/usr/lib/hildon-control-panel/"
54         cp -a "src/usr/lib/hildon-control-panel/libcallnotify.so" "$(CURDIR)/debian/callnotify/usr/lib/hildon-control-panel/libcallnotify.so"
55         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
56         cp -a "src/usr/share/CallNotify/1.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/1.png"
57         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
58         cp -a "src/usr/share/CallNotify/2.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/2.png"
59         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
60         cp -a "src/usr/share/CallNotify/3.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/3.png"
61         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
62         cp -a "src/usr/share/CallNotify/4.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/4.png"
63         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
64         cp -a "src/usr/share/CallNotify/5.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/5.png"
65         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
66         cp -a "src/usr/share/CallNotify/call.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/call.png"
67         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
68         cp -a "src/usr/share/CallNotify/missed.wav" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/missed.wav"
69         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
70         cp -a "src/usr/share/CallNotify/more.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/more.png"
71         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
72         cp -a "src/usr/share/CallNotify/sms.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/sms.png"
73         mkdir -p "$(CURDIR)/debian/callnotify/usr/lib/hildon-desktop/"
74         cp -a "src/usr/lib/hildon-desktop/CallNotify.py" "$(CURDIR)/debian/callnotify/usr/lib/hildon-desktop/CallNotify.py"
75         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/pixmaps/"
76         cp -a "src/usr/share/pixmaps/CallNotify.png" "$(CURDIR)/debian/callnotify/usr/share/pixmaps/CallNotify.png"
77         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/applications/hildon-control-panel/"
78         cp -a "src/usr/share/applications/hildon-control-panel/callnotify.desktop" "$(CURDIR)/debian/callnotify/usr/share/applications/hildon-control-panel/callnotify.desktop"
79         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/applications/hildon-status-menu/"
80         cp -a "src/usr/share/applications/hildon-status-menu/CallNotify.desktop" "$(CURDIR)/debian/callnotify/usr/share/applications/hildon-status-menu/CallNotify.desktop"
81
82         # ======================================================
83
84 # Build architecture-independent files here.
85 binary-indep: build install
86 # We have nothing to do by default.
87
88 # Build architecture-dependent files here.
89 binary-arch: build install
90         dh_testdir
91         dh_testroot
92         dh_installchangelogs debian/changelog
93         dh_installdocs
94         dh_installexamples
95 #       dh_install
96 #       dh_installmenu
97 #       dh_installdebconf
98 #       dh_installlogrotate
99 #       dh_installemacsen
100 #       dh_installpam
101 #       dh_installmime
102 #       dh_python
103 #       dh_installinit
104 #       dh_installcron
105 #       dh_installinfo
106         dh_installman
107         dh_link
108         dh_strip
109         dh_compress
110         dh_fixperms
111 #       dh_perl
112         dh_makeshlibs
113         dh_installdeb
114         dh_shlibdeps
115         dh_gencontrol
116         dh_md5sums
117         dh_builddeb
118
119 binary: binary-indep binary-arch
120 .PHONY: build clean binary-indep binary-arch binary install configure