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 = "lib32-glibc"
version = "2.43"
description = "32-bit GNU C Library — foundation for all 32-bit Steam/Wine/Proton binaries"
url = "https://www.gnu.org/software/libc/"
license = "LGPL-2.1"
[source]
url = "https://ftp.gnu.org/gnu/glibc/glibc-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc"]
build = ["gcc", "binutils", "make", "sed", "gawk"]
[build]
system = "autotools"
configure = """mkdir -p build && cd build && CC="gcc -m32" CXX="g++ -m32" ../configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --enable-kernel=5.4 --disable-profile libc_cv_slibdir=/usr/lib32"""
make = """cd build && make"""
install = """cd build && make DESTDIR=${PKG} install"""