1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export PYBUILD_NAME = cai
%:
dh $@ --buildsystem pybuild
override_dh_installdocs:
PATH=$(CURDIR)/debian/python3-cai/usr/bin:$(PATH) PYTHONPATH=$(CURDIR)/src python3 -m sphinx -N -bhtml docs build/html
find build/html -name .doctrees | xargs --no-run-if-empty rm -rf
dh_installdocs
dh_installdocs -p python-cai-doc --doc-main-package python3-cai build/html
override_dh_installman:
PYTHONPATH=src help2man debian/python3-cai/usr/bin/CAI --no-info \
--name 'calculate codon adaptation index for a DNA sequence' \
--version-string "$(DEB_VERSION_UPSTREAM)" > CAI.1
dh_installman CAI.1
|