File: rules

package info (click to toggle)
python-iniparse 0.4-2.2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 440 kB
  • ctags: 665
  • sloc: python: 2,214; makefile: 25
file content (16 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

export PYBUILD_NAME=iniparse

%:
	dh $@ --with python2,python3 --buildsystem=pybuild

override_dh_auto_install:
	dh_auto_install
	rm -fr debian/python*-iniparse/usr/share/doc/iniparse-*

override_dh_auto_test:
	python2 ./runtests.py
	python3 ./runtests.py

.PHONY: override_dh_auto_install override_dh_auto_test