1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

[WIP] Build vosk-api andits dependencies from source

This so we can use the same package for any architecture in the future.
This commit is contained in:
j1nx
2022-12-20 15:58:35 +01:00
parent 8a75b8e37a
commit 08e08a0c5b
22 changed files with 325 additions and 0 deletions

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_SRT
bool "python-srt"
help
A tiny library for parsing, modifying, and composing SRT
files.
https://github.com/cdown/srt

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/srt/json
md5 3b68be7c46ec6152123fd801f519a63d srt-3.5.2.tar.gz
sha256 7aa4ad5ce4126d3f53b3e7bc4edaa86653d0378bf1c0b1ab8c59f5ab41384450 srt-3.5.2.tar.gz
# Locally computed sha256 checksums
sha256 23fc2fec09b621a22699a1fa8685b5b21c64fde7f9385ca6e5f2f29d0a4bc776 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-srt
#
################################################################################
PYTHON_SRT_VERSION = 3.5.2
PYTHON_SRT_SOURCE = srt-$(PYTHON_SRT_VERSION).tar.gz
PYTHON_SRT_SITE = https://files.pythonhosted.org/packages/18/a3/e1466f7c86a9e5d3e462ed6eb3a548917e93cc1ee212cd927f8f4e887ae9
PYTHON_SRT_SETUP_TYPE = setuptools
PYTHON_SRT_LICENSE = MIT
PYTHON_SRT_LICENSE_FILES = LICENSE
$(eval $(python-package))