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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export PYBUILD_NAME=ws4py
export PYBUILD_BEFORE_TEST=cp -r {dir}/test {build_dir}
export PYBUILD_AFTER_TEST=rm {build_dir}/my.log
export PYBUILD_TEST_NOSE=1
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_installchangelogs:
dh_installchangelogs CHANGELOG.md
override_dh_installdocs:
make -C docs/ clean html
dh_installdocs -A README.md
override_dh_installexamples:
dh_installexamples -p python-ws4py-doc --doc-main-package=python-ws4py-doc
override_dh_auto_clean:
dh_auto_clean
make -C docs/ clean
|