File: rules

package info (click to toggle)
python-dhm 0.5-2.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 136 kB
  • ctags: 199
  • sloc: python: 966; makefile: 28
file content (42 lines) | stat: -rwxr-xr-x 938 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
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.

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

build build-stamp:
	python2.2 setup.py build
	python2.3 setup.py build
	touch build-stamp

clean:
	dh_testdir
	rm -f build-stamp 
	rm -rf build
	dh_clean 

# Build architecture-independent files here.
binary-arch: 
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-indep: build-stamp
	dh_testdir
	dh_testroot
	dh_install
	dh_installchangelogs --keep NEWS
	dh_installdocs
	dh_compress
	dh_fixperms
	python2.2 setup.py install --prefix=$(shell pwd)/debian/python2.2-dhm/usr
	python2.3 setup.py install --prefix=$(shell pwd)/debian/python2.3-dhm/usr
	dh_python
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure