Files
chromebrew/packages/alsa_utils.rb
chromebrew-actions[bot] 396acd9804 update-alsa_utils — alsa_utils: 1.2.12 → 1.2.14 (#13710)
* Alsa_utils 1.2.12 => 1.2.14

* update-alsa_utils: Package File Update Run on linux/amd64 container.

* update-alsa_utils: Package File Update Run on linux/arm/v7 container.

---------

Co-authored-by: Ed Reel <edreel@gmail.com>
Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2025-12-05 04:23:38 +00:00

31 lines
1.0 KiB
Ruby

require 'buildsystems/autotools'
class Alsa_utils < Autotools
description 'The Advanced Linux Sound Architecture (ALSA) - utilities'
homepage 'https://github.com/alsa-project/alsa-utils'
version '1.2.14'
license 'GPL-2'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://github.com/alsa-project/alsa-utils.git'
git_hashtag "v#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'f1ac69ee7f4aeca6f6dd2be7d4cbb32ef548810171d04984d7644e71c1673933',
armv7l: 'f1ac69ee7f4aeca6f6dd2be7d4cbb32ef548810171d04984d7644e71c1673933',
x86_64: '88b34e5a7d3050c87fd3b39be746a728aa094a37dfbd90559d1dffdfe9624965'
})
depends_on 'alsa_lib' # R
depends_on 'cras' # L
depends_on 'glibc' # R
depends_on 'libsamplerate' # R
depends_on 'ncurses' # R
def self.patch
downloader 'https://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess', 'SKIP'
downloader 'https://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub', 'SKIP'
system 'autoreconf -fiv'
end
end