AutoBuild: update-alsa-lib started at 2025-06-20-09UTC (#12084)

* alsa_lib => 1.2.14

Signed-off-by: SupeChicken666 <me@supechicken666.dev>

* Add built packages for linux/386 to update-alsa-lib

* Add built packages for linux/amd64 to update-alsa-lib

* Add built packages for linux/arm/v7 to update-alsa-lib

---------

Signed-off-by: SupeChicken666 <me@supechicken666.dev>
Co-authored-by: SupeChicken666 <supechicken666@gmail.com>
Co-authored-by: supechicken <supechicken@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-06-20 10:11:41 -04:00
committed by GitHub
parent 9efb362631
commit eb92297280

View File

@@ -3,31 +3,27 @@ require 'buildsystems/autotools'
class Alsa_lib < Autotools
description 'The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system.'
homepage 'https://www.alsa-project.org/main/index.php/Main_Page'
version "1.2.12-#{CREW_PY_VER}"
version "1.2.14-#{CREW_PY_VER}"
license 'LGPL-2.1'
compatibility 'all'
source_url "https://github.com/alsa-project/alsa-lib/archive/v#{version.split('-').first}.tar.gz"
source_sha256 'f067dbba9376e5bbbb417b77751d2a9f2f277c54fb3a2b5c023cc2c7dfb4e3c1'
source_sha256 'a7bc6c09f0e5a622ebc8afb63a194aa1396145b5c6433d3445363201d96c23c4'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '570ee5e7d7164a3e6c67f0cc28a72c5052e0520ca1489af80bf5d1afa1272cf2',
armv7l: '570ee5e7d7164a3e6c67f0cc28a72c5052e0520ca1489af80bf5d1afa1272cf2',
i686: '8b7e69705b7f7fa70c9e523b63cc65ad14dd9287c56574c61d0843ca65aeb990',
x86_64: '7d9cf5e9b5a2cb154f58ec95febfcc7dcb9e83c27fa4818c939507135ea5f08c'
aarch64: '78302d0876d08fcc588cfb699b333f5e096266665aa18d8de8d5bc3ec061ba1c',
armv7l: '78302d0876d08fcc588cfb699b333f5e096266665aa18d8de8d5bc3ec061ba1c',
i686: '53f68bdfb4df092d98b184335e0fba990c768268ae9789e0f12cc621721bf622',
x86_64: '8d117e4c7312481688ce50f455604fe46b70358d2855c9288aac357c02c92672'
})
depends_on 'glibc' # R
depends_on 'python3' # L
def self.build
@py_ver = `python -c "import sys; version = '.'.join(map(str, sys.version_info[:2])) ; print(version)"`.chomp
system 'autoreconf -fiv'
system "./configure #{CREW_CONFIGURE_OPTIONS} \
--without-debug \
--disable-maintainer-mode \
--with-pythonlibs=-lpython#{@py_ver} \
--with-pythonincludes=-I#{CREW_PREFIX}/include/python#{@py_ver}"
system 'make'
end
autotools_configure_options <<~OPT
--without-debug \
--disable-maintainer-mode \
--with-pythonlibs=-lpython#{CREW_PY_VER.delete_prefix('py')} \
--with-pythonincludes=-I#{CREW_PREFIX}/include/python#{CREW_PY_VER.delete_prefix('py')}
OPT
end