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.2' 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: 'c6e3af9391c3594dc1c277cd94f8676894fc47f5f41b13ad4cd13d1ee31aed4a', armv7l: 'c6e3af9391c3594dc1c277cd94f8676894fc47f5f41b13ad4cd13d1ee31aed4a', x86_64: '2f574896d2f74faa8fb668190d56ed6801310d67ea8d863ca8b73504689dc467' }) 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