File: rules

package info (click to toggle)
python-davlib 1.8-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 36 kB
  • ctags: 44
  • sloc: python: 241; makefile: 27; sh: 2
file content (41 lines) | stat: -rwxr-xr-x 662 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
#! /usr/bin/make -f

# $Debian: rules,v 1.1 2001/12/17 20:31:31 epg Exp $

INSTALL=	/usr/bin/install
INSTALL_DATA=	${INSTALL} -m 644 -o root -g root
INSTALL_MODULE=	${INSTALL_DATA}

build:
# Nothing to do here

clean:
	dh_testdir
	dh_clean

install:
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	${INSTALL_MODULE} davlib.py debian/tmp/usr/lib/python2.1/site-packages

binary-indep: install
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installchangelogs
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:
# Nothing to do here

binary: binary-indep

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