File: rules

package info (click to toggle)
feedparser 4.1-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,108 kB
  • ctags: 657
  • sloc: python: 2,190; xml: 239; makefile: 34; sh: 8
file content (44 lines) | stat: -rwxr-xr-x 807 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
#!/usr/bin/make -f
#export DH_VERBOSE=1

PREFIX := debian/python-feedparser/usr

clean:
	dh_testdir
	dh_testroot
	python ./setup.py clean
	rm -rf build
	dh_clean 

build:

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	python ./setup.py install --prefix $(PREFIX) --no-compile \
		--install-lib $(PREFIX)/share/python-support/python-feedparser

binary-arch: build install

binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs 
	dh_installdocs docs
	dh_installexamples
	dh_link
	dh_strip
	dh_pysupport
	dh_compress
	dh_fixperms
	chmod 755 $(PREFIX)/share/python-support/python-feedparser/feedparser.py
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch

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