mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* wavpack 5.1.0 -> 5.9.0 * Mark packages from successful builds as automatically buildable. * wavpack: Package File Update Run on linux/386 container. * wavpack: Package File Update Run on linux/amd64 container. * wavpack: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
22 lines
791 B
Ruby
22 lines
791 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Wavpack < Autotools
|
|
description 'WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode.'
|
|
homepage 'https://www.wavpack.com/'
|
|
version '5.9.0'
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/dbry/WavPack.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '11776c316379886231bfb839e253a5b333bddca889b115b969dfff77a837d06c',
|
|
armv7l: '11776c316379886231bfb839e253a5b333bddca889b115b969dfff77a837d06c',
|
|
i686: '1fead54e28e000ceae77795ec046795ac9499d87abfd594d79d7bc80910ac662',
|
|
x86_64: '86543791e1d04bbc29d271e24923b08c555f63cfe4153ff39eb999f392e18b68'
|
|
})
|
|
|
|
depends_on 'glibc' => :library
|
|
end
|