File: rules

package info (click to toggle)
python-musicbrainz2 0.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 648 kB
  • ctags: 881
  • sloc: python: 4,624; xml: 999; makefile: 14
file content (20 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f

PYVERS:=$(shell pyversions -s)

%:
	dh $@

override_dh_clean:
	dh_clean
	rm -rf html

override_dh_auto_install:
	dh_auto_install
	./setup.py docs

override_dh_auto_test:
	set -e; \
	for python in $(PYVERS) ; do \
		$$python setup.py test ; \
	done