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
|
#!/usr/bin/make -f
export DH_VERBOSE=1
export PYBUILD_NAME=pygccxml
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
$(MAKE) html
override_dh_installchangelogs:
dh_installchangelogs -A docs/history.rst
override_dh_auto_test:
# Known test failures
- dh_auto_test
override_dh_installdocs:
dh_installdocs
rm -rf ./debian/python-pygccxml-doc/usr/share/doc/python-pygccxml-doc/doctrees
rm -rf ./debian/python-pygccxml-doc/usr/share/doc/python-pygccxml-doc/html/_static/fonts
override_dh_auto_clean:
dh_auto_clean
rm -rf docs/_build
rm -rf docs/apidocs
rm -rf src/pygccxml.egg-info
|