mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
24 lines
802 B
Ruby
24 lines
802 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Speex < Autotools
|
|
description 'Speex is an Open Source/Free Software patent-free audio compression format designed for speech.'
|
|
homepage 'https://speex.org/'
|
|
version '1.2.1'
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.xiph.org/xiph/speex.git'
|
|
git_hashtag "Speex-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9b951f2a67e662c4c38f53298af1ade1dce898c96ef9ef47e3f59adbb20900ce',
|
|
armv7l: '9b951f2a67e662c4c38f53298af1ade1dce898c96ef9ef47e3f59adbb20900ce',
|
|
i686: 'ad5627f756d4a1b07e229d1823f70d2e36ecbcdb56f083c990f06dfdd2662f26',
|
|
x86_64: '6c0d8ff5ab8e2ac17cac3039f2f6bcd75790e1815478d5421beaa13c1cd2f483'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
configure_options '--disable-maintainer-mode'
|
|
end
|