Imported Upstream version 0.0.1
[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         touch build-stamp
32
33 clean:
34         dh_testdir
35         dh_testroot
36         rm -f build-stamp configure-stamp
37         dh_clean
38
39 install: build
40         dh_testdir
41         dh_testroot
42         dh_clean -k
43         dh_installdirs
44
45         # ======================================================
46         #$(MAKE) DESTDIR="$(CURDIR)/debian/callnotify" install
47         mkdir -p "$(CURDIR)/debian/callnotify"
48
49 #       mkdir -p "$(CURDIR)/debian/callnotify/usr/lib/hildon-desktop/"
50         cp -a "src/usr/lib/hildon-desktop/CallNotify.py" "$(CURDIR)/debian/callnotify/usr/lib/hildon-desktop/CallNotify.py"
51         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
52         cp -a "src/usr/share/CallNotify/1.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/1.png"
53         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
54         cp -a "src/usr/share/CallNotify/2.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/2.png"
55         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
56         cp -a "src/usr/share/CallNotify/3.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/3.png"
57         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
58         cp -a "src/usr/share/CallNotify/4.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/4.png"
59         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
60         cp -a "src/usr/share/CallNotify/5.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/5.png"
61         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
62         cp -a "src/usr/share/CallNotify/more.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/more.png"
63         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/CallNotify/"
64         cp -a "src/usr/share/CallNotify/sms.png" "$(CURDIR)/debian/callnotify/usr/share/CallNotify/sms.png"
65         mkdir -p "$(CURDIR)/debian/callnotify/usr/share/application/hildon-status-menu/"
66         cp -a "src/usr/share/application/hildon-status-menu/CallNotify.desktop" "$(CURDIR)/debian/callnotify/usr/share/application/hildon-status-menu/CallNotify.desktop"
67
68         # ======================================================
69
70 # Build architecture-independent files here.
71 binary-indep: build install
72 # We have nothing to do by default.
73
74 # Build architecture-dependent files here.
75 binary-arch: build install
76         dh_testdir
77         dh_testroot
78         dh_installchangelogs debian/changelog
79         dh_installdocs
80         dh_installexamples
81 #       dh_install
82 #       dh_installmenu
83 #       dh_installdebconf
84 #       dh_installlogrotate
85 #       dh_installemacsen
86 #       dh_installpam
87 #       dh_installmime
88 #       dh_python
89 #       dh_installinit
90 #       dh_installcron
91 #       dh_installinfo
92         dh_installman
93         dh_link
94         dh_strip
95         dh_compress
96         dh_fixperms
97 #       dh_perl
98 #       dh_makeshlibs
99         dh_installdeb
100         dh_shlibdeps
101         dh_gencontrol
102         dh_md5sums
103         dh_builddeb
104
105 binary: binary-indep binary-arch
106 .PHONY: build clean binary-indep binary-arch binary install configure