mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add qt5_quickcontrols2 package * Add libopusenc package * Add tinyxml2 package * Add musescore package * Add binaries for armv7l. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add note about tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update packages.yaml Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Maximilian Downey Twiss <creatorsmithmdt@gmail.com>
22 lines
734 B
Ruby
22 lines
734 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libopusenc < Autotools
|
|
description 'Library for encoding .opus audio files and live streams.'
|
|
homepage 'https://github.com/xiph/libopusenc'
|
|
version '0.2.1'
|
|
license 'BSD 3-Clause'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/xiph/libopusenc.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e926fc1cf41c8931d1d787ce5cf75a1318656ae8833155b143d72b4ddbbe7800',
|
|
armv7l: 'e926fc1cf41c8931d1d787ce5cf75a1318656ae8833155b143d72b4ddbbe7800',
|
|
i686: '1aeda0691e007e7ce65411336d621fd799240fa6649e208204051cf12f5c50fc',
|
|
x86_64: 'bc2f75a61251db88d997bcbbaa696e653240a1e4e2a1d39e28f6f84d7862b795'
|
|
})
|
|
|
|
depends_on 'opus'
|
|
end
|