1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
export PYBUILD_NAME=wheel
export PYBUILD_VERBOSE=1
export DH_VERBOSE=1
export PYBUILD_AFTER_INSTALL=mkdir -p {dir}/debian/python3-wheel-whl/usr/share/python-wheels && cp {home_dir}/*.whl {dir}/debian/python3-wheel-whl/usr/share/python-wheels
%:
dh $@ --with python3 --buildsystem=pybuild
execute_before_dh_installman:
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
(cd docs; \
python3 -m sphinx \
-b man \
-d _build/doctrees . _build/man)
endif
override_dh_python3:
dh_python3 --shebang=/usr/bin/python3
mkdir -p debian/python-wheel-common/usr
mv debian/python3-wheel/usr/bin debian/python-wheel-common/usr
|