Files
revpimodio2/debian/rules
Sven Sager 609ecfb715 fix(deb): Use default sphinx theme
The `sphinx_rtd_theme` ist not available in debian packages.
2026-02-18 15:57:47 +01:00

15 lines
314 B
Makefile
Executable File

#!/usr/bin/make -f
export PYBUILD_NAME=revpimodio2
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
PYTHONPATH=. python3 -m sphinx -b html -d docs/_build/.doctrees -N docs docs/_build/html -D html_theme=alabaster
override_dh_clean:
rm -rf docs/_build
dh_clean