#!/usr/bin/make -f
# -*- makefile -*-

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

export PYBUILD_NAME=dyda

%:
	dh $@ --buildsystem=pybuild

#override_dh_auto_install:
#	dh_auto_install
#	find $(CURDIR)/debian/python3-dyda/usr/lib -name '*.py' -exec rm {} \;

override_dh_auto_clean:
	dh_auto_clean
	rm -rf dyda.egg-info

override_dh_auto_test:
	# Don't run the test because some test use GPU acceleration.
