1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE = 1
export PYBUILD_DESTDIR=debian/mkdocs
export PYBUILD_BEFORE_TEST=cp -r {dir}/mkdocs/tests {build_dir}/mkdocs
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/mkdocs/tests
export PYBUILD_TEST_ARGS=-s mkdocs/tests -p "*_tests.py"
export LC_ALL=C.UTF-8
%:
dh $@ --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
PYTHONPATH=. python3 -m mkdocs build -v -d docs.debian/html
rm -rf docs.debian/html/__pycache__
override_dh_auto_install:
dh_auto_install
rm debian/mkdocs/usr/bin/mkdocs
find debian -name LICENSE -exec rm -f {} \;;
find debian -type d -empty -delete
override_dh_installman:
pod2man -c Debhelper -r '' debian/scripts/dh_mkdocs debian/dh_mkdocs.1
dh_installman
override_dh_installdocs:
dh_installdocs
./debian/scripts/dh_mkdocs
override_dh_compress:
dh_compress -Xsearch_index.json
|