#!/usr/bin/make -f

export PYBUILD_NAME=dialog

PKG := python3-$(PYBUILD_NAME)
PKGDIR := debian/$(PKG)
PKGDOCDIR := $(PKGDIR)/usr/share/doc/$(PKG)

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

override_dh_clean:
	dh_clean
	rm -rf debian/doc-build

override_dh_auto_build:
	dh_auto_build
	# Build the Sphinx-based documentation
	PYTHONPATH=. http_proxy='127.0.0.1:9' \
	  sphinx-build -N -b html doc debian/doc-build/html

override_dh_compress:
	dh_compress -X.py

override_dh_installexamples:
	dh_installexamples
	find $(PKGDOCDIR)/examples -type f -name '*.py' -exec sed -i -e \
	  '1s,^#! */usr/bin/env \(python3\)$$,#! /usr/bin/\1,' '{}' +
