1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
export PYBUILD_NAME = fontfeatures
export PYBUILD_BEFORE_TEST = cp /usr/share/fonts/truetype/roboto/unhinted/RobotoTTF/Roboto-Regular.ttf fonts/
export PYBUILD_TEST_ARGS = --ignore-glob "tests/test_shaping_*.py"
%:
dh $@ --buildsystem=pybuild
execute_after_dh_auto_build-indep: export http_proxy=127.0.0.1:9
execute_after_dh_auto_build-indep: export https_proxy=127.0.0.1:9
execute_after_dh_auto_build-indep:
ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
LC_ALL=C PYTHONPATH=Lib python3 -m sphinx -N -bhtml docs/ build/html
endif
execute_after_dh_auto_install-indep:
rm -r debian/python3-fontfeatures/usr/bin
|