summaryrefslogtreecommitdiff
path: root/debian/rules
blob: e37b8f1091c2d784f2f9c4ac1ab3e9a2bce409b6 (plain)
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