Files
chromebrew/packages/alsa_utils.rb
chromebrew-actions[bot] 77abcccd0b 'updater-alsa_utils-1.2.15' (#13884)
* Add unbuilt alsa_utils to updater-alsa_utils-1.2.15

* Adjust builds

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* updater-alsa_utils-1.2.15: Package File Update Run on linux/386 container.

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

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

* update deps

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2025-12-17 22:33: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.15'
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: 'c4f83222936a93eed6b50f84251adb33d22a032edc76ddeacaae0d4f1faade21',
armv7l: 'c4f83222936a93eed6b50f84251adb33d22a032edc76ddeacaae0d4f1faade21',
x86_64: '0d32ba068b347894e8c6d2c43c71852ca544fb839bcf8b00529b3da916f93b5b'
})
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