#!/usr/bin/make -f

export PYBUILD_NAME=sphinx-autobuild

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

override_dh_auto_install:
	dh_auto_install

	mkdir -p debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME)
	cp README.rst debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME)/README

override_dh_auto_test:
	# disabled

override_dh_installchangelogs:
	dh_installchangelogs NEWS.rst
