File: rules

package info (click to toggle)
python-tz 2005a-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,364 kB
  • ctags: 2,903
  • sloc: python: 84,245; makefile: 41
file content (51 lines) | stat: -rwxr-xr-x 847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

.PHONY: build
build: build-stamp
build-stamp:
	dh_testdir
	python2.3 setup.py build 
	touch build-stamp

.PHONY: clean
clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	python setup.py clean
	find -name '*.pyc' -exec rm -f {} \;
	dh_clean
       	
.PHONY: install
install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	python2.3 setup.py install --no-compile --prefix=debian/python2.3-tz/usr

.PHONY: binary-indep
binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs CHANGES.txt
	dh_installdocs
	dh_installman
	dh_strip
	dh_compress
	dh_fixperms
	dh_python
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

.PHONY: binary-arch
binary-arch: build install

.PHONY: binary
binary: binary-indep binary-arch