fixing some problems in package scripts and add info files
[findit] / 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 configure: configure-stamp
13 configure-stamp:
14         dh_testdir
15         # Add here commands to configure the package.
16
17         touch configure-stamp
18
19 build: build-stamp
20
21 build-stamp: configure-stamp
22         dh_testdir
23
24         # Add here commands to compile the package.
25         mkdir $(CURDIR)/ru
26         mkdir $(CURDIR)/ru/LC_MESSAGES
27         touch $(CURDIR)/ru/LC_MESSAGES/findit.mo
28         msgfmt ru.po -o $(CURDIR)/ru/LC_MESSAGES/findit.mo
29         python setup.py build
30         #docbook-to-man debian/findit.sgml > findit.1
31
32         touch $@
33
34 clean:
35         dh_testdir
36         dh_testroot
37         rm -f build-stamp configure-stamp
38         rm -rf $(CURDIR)/ru
39
40         # Add here commands to clean up after the build process.
41         python setup.py clean --all
42
43         dh_clean 
44
45 install: build
46         dh_testdir
47         dh_testroot
48         dh_clean -k 
49         dh_installdirs
50
51         # Add here commands to install the package into debian/findit
52         python setup.py install --root $(CURDIR)/debian/findit
53
54 # Build architecture-independent files here.
55 binary-indep: build install
56 # We have nothing to do by default.
57
58 # Build architecture-dependent files here.
59 binary-arch: build install
60         dh_testdir
61         dh_testroot
62         dh_installchangelogs 
63         dh_installdocs
64         dh_installexamples
65         dh_installman
66         dh_link
67         dh_strip
68         dh_compress
69         dh_fixperms
70         dh_installdeb
71         dh_gencontrol
72         dh_md5sums
73         dh_builddeb
74
75 binary: binary-indep binary-arch
76 .PHONY: build clean binary-indep binary-arch binary install configure