[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_FONTTOOLS
bool "python-fonttools"
help
Tools to manipulate font files.
https://github.com/fonttools/fonttools

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/fonttools/json
md5 197ad603c91d4c2909acf9e54c26e85f fonttools-4.34.4.zip
sha256 9a1c52488045cd6c6491fd07711a380f932466e317cb8e016fc4e99dc7eac2f0 fonttools-4.34.4.zip
# Locally computed sha256 checksums
sha256 6787208f83f659ccbc2223b2fde952ffa6f7e8aca62f1a8a2bf5bc51bb1b2383 LICENSE

View File

@ -0,0 +1,22 @@
################################################################################
#
# python-fonttools
#
################################################################################
PYTHON_FONTTOOLS_VERSION = 4.34.4
PYTHON_FONTTOOLS_SOURCE = fonttools-$(PYTHON_FONTTOOLS_VERSION).zip
PYTHON_FONTTOOLS_SITE = https://files.pythonhosted.org/packages/5a/a4/a97cff4c4af6764a04cc202299e5205b2e101cb1543bcaf9737be29f78ab
PYTHON_FONTTOOLS_SETUP_TYPE = setuptools
PYTHON_FONTTOOLS_LICENSE = MIT
PYTHON_FONTTOOLS_LICENSE_FILES = LICENSE
PYTHON_FONTTOOLS_DEPENDENCIES = host-python-cython
PYTHON_FONTTOOLS_ENV = FONTTOOLS_WITH_CYTHON=1
define PYTHON_FONTTOOLS_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(PYTHON_FONTTOOLS_DL_DIR)/$(PYTHON_FONTTOOLS_SOURCE)
mv $(@D)/fonttools-$(PYTHON_FONTTOOLS_VERSION)/* $(@D)
$(RM) -r $(@D)/fonttools-$(PYTHON_FONTTOOLS_VERSION)
endef
$(eval $(python-package))