82a69bf099861b8ee779d8ae355df0b563b28f47
[browser-switch] / 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
14
15 configure: configure-stamp
16 configure-stamp:
17         touch configure-stamp
18
19
20 build: build-stamp
21
22 build-stamp: configure-stamp 
23         dh_testdir
24
25         touch $@
26
27 clean:
28         dh_testdir
29         dh_testroot
30         rm -f build-stamp configure-stamp
31
32         dh_clean 
33
34 install: build
35         dh_testdir
36         dh_testroot
37         dh_clean -k 
38         dh_installdirs
39
40         # Add here commands to install the package into debian/browser-proxy.
41         install -c -m 0755 browser-proxy debian/browser-proxy/usr/bin/browser-proxy
42         install -c -m 0644 com.nokia.osso_browser.service debian/browser-proxy/usr/share/dbus-1/services
43         install -c -m 0755 browser debian/browser-proxy/usr/bin/browser
44
45
46 binary-indep: build install
47         dh_testdir
48         dh_testroot
49         dh_installchangelogs 
50         dh_installdocs
51         dh_installexamples
52 #       dh_install
53 #       dh_installmenu
54 #       dh_installdebconf       
55 #       dh_installlogrotate
56 #       dh_installemacsen
57 #       dh_installpam
58 #       dh_installmime
59 #       dh_python
60 #       dh_installinit
61 #       dh_installcron
62 #       dh_installinfo
63 #       dh_installman
64 #       dh_link
65 #       dh_strip
66         dh_compress
67         dh_fixperms
68 #       dh_perl
69 #       dh_makeshlibs
70         dh_installdeb
71 #       dh_shlibdeps
72         dh_gencontrol
73         dh_md5sums
74         dh_builddeb
75
76 binary-arch: build install
77 # arch: all package, nothing to do here
78
79 binary: binary-indep binary-arch
80 .PHONY: build clean binary-indep binary-arch binary install configure