#!/usr/bin/make -f

#export DH_VERBOSE=1

export PYBUILD_NAME = picobox

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

ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
execute_after_dh_auto_build:
	export PYTHONPATH=$$(pybuild --print build_dir | grep "^$$(py3versions -d)" | sed -e 's/^.*: //'); \
	    sphinx-build -W -b html docs docs/_build/html
endif

override_dh_installdocs:
	dh_installdocs -ppython-picobox-doc --doc-main-package=python3-picobox
	dh_installdocs --remaining-packages

override_dh_installexamples:
	dh_installexamples -ppython-picobox-doc --doc-main-package=python3-picobox
	dh_installexamples --remaining-packages

execute_after_dh_auto_clean:
	rm -rf docs/_build
