new repos

This commit is contained in:
2026-03-20 10:25:48 +01:00
parent a0773c3c54
commit 90de455035
35 changed files with 612 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
[package]
name = "alsa-lib"
version = "1.2.13"
description = "ALSA sound library — provides hardware audio access for PipeWire and applications"
url = "https://www.alsa-project.org/"
license = "LGPL-2.1"
[source]
url = "https://www.alsa-project.org/files/pub/lib/alsa-lib-${version}.tar.bz2"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc"]
build = ["gcc", "make", "pkg-config"]
[build]
system = "autotools"
configure = """./configure --prefix=/usr --disable-static"""
make = """make"""
install = """make DESTDIR=${PKG} install"""

View File

@@ -15,6 +15,8 @@ build = ["make", "sed", "gawk", "texinfo"]
[build]
system = "autotools"
configure = """mkdir build && cd build && ../configure --prefix=/usr --enable-languages=c,c++ --enable-default-pie --enable-default-ssp --disable-multilib --with-system-zlib"""
# Multilib enabled — required for 32-bit Steam/Wine/Proton support.
# This builds both x86_64 and i686 compilers/libraries.
configure = """mkdir build && cd build && ../configure --prefix=/usr --enable-languages=c,c++ --enable-default-pie --enable-default-ssp --enable-multilib --with-system-zlib"""
make = """make"""
install = """make DESTDIR=${PKG} install"""