#!/usr/bin/make -f

export PYBUILD_NAME=testrepository
export PYBUILD_DISABLE=test

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

override_dh_installchangelogs:
	dh_installchangelogs -k NEWS

override_dh_auto_install:
	dh_auto_install

override_dh_clean:
	dh_clean
	rm -rf build .testrepository Makefile dist

override_dh_fixperms:
	dh_fixperms
	rm -r $(CURDIR)/debian/python3-testrepository/usr/lib/python3/dist-packages/doc
