#! /usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

#export DH_PYCENTRAL=nomove
#PYVERSIONS=$(shell pyversions -r)

%:
	dh $@ --with python3

clean:
	# unable to use --with python3 on fedora build system :-(
	dh clean

override_dh_auto_configure:
	./configure --prefix=/usr --python=python3

override_dh_auto_test:
	# run only python3 tests
	python3 -W always ./utest.py
