mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-03-24-00-20 * Add unbuilt updated ruby gem packages to updates-2025-03-24-00-20 * Add built packages for linux/386 to updates-2025-03-24-00-20 * Add built packages for linux/amd64 to updates-2025-03-24-00-20 * Add built packages for linux/arm/v7 to updates-2025-03-24-00-20 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
24 lines
817 B
Ruby
24 lines
817 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.2-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '61546db2af45ae130d3119d09eda5daf2c4bdbfdd6da5f69dd90d048a8b3a58d',
|
|
armv7l: '61546db2af45ae130d3119d09eda5daf2c4bdbfdd6da5f69dd90d048a8b3a58d',
|
|
i686: '203a5c5e251acf18748f34557cc58b4b55afcb59b6f3f5e4794c8daec988eab5',
|
|
x86_64: '37dbe1bdf768997f5150ce208329b98ab77927723b6f19e7486769fb08ba9642'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|