mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt py3_speechrecognition to updater-py3_speechrecognition-3.14.4 * updater-py3_speechrecognition-3.14.4: Package File Update Run on linux/386 container. * updater-py3_speechrecognition-3.14.4: Package File Update Run on linux/amd64 container. * updater-py3_speechrecognition-3.14.4: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
811 B
Ruby
24 lines
811 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_speechrecognition < Pip
|
|
description 'SpeechRecognition is a library for performing speech recognition, with support for several engines and APIs, online and offline.'
|
|
homepage 'https://github.com/Uberi/speech_recognition/'
|
|
version "3.14.4-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '72a07ea5af2ef1b9f5be59d98f4dfce6de8fc7597de515d0378638aaccceb445',
|
|
armv7l: '72a07ea5af2ef1b9f5be59d98f4dfce6de8fc7597de515d0378638aaccceb445',
|
|
i686: '1937266f360353285fb3c951c2a8dd8d6eb7a04e8758b1bb25727a9ac82983c6',
|
|
x86_64: '442b2e512a071ae92f6e2fd85638608fcd6ebdde599f734fce9287a1418e8fdc'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' # R
|
|
|
|
no_source_build
|
|
end
|