summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 62b8702ec69a8220e7b3150ef0772efd3ce1eb9d (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make -f

%:
	dh $* --with python2,python3

override_dh_auto_install:
	dh_auto_install
	set -ex; for python in $(shell py3versions -r); do \
		$$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \
	done;