1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
export PYBUILD_NAME=jeepney
export PYBUILD_SYSTEM=flit
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
$(MAKE) -Cdocs html
override_dh_auto_test:
dbus-run-session -- dh_auto_test -- --system distutils
override_dh_installdocs:
dh_installdocs -pjeepney-doc --doc-main-package=python3-jeepney
dh_installdocs --remaining-packages
override_dh_installexamples:
dh_installexamples -pjeepney-doc --doc-main-package=python3-jeepney
dh_installexamples --remaining-packages
|