summaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 86f4c9d5514c5ca026afe20fa40053c86f4d6237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
#export DH_VERBOSE = 1

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

override_dh_auto_configure:
	dh_auto_configure

override_dh_python3:
	dh_python3 --shebang=/usr/bin/python3

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	PYTHONPATH=$(CURDIR)/src py.test-3
endif

override_dh_clean:
	dh_clean $(CURDIR)/src/*.egg-info/