Compare commits
2 Commits
a0773c3c54
...
d4fe8edd52
| Author | SHA1 | Date | |
|---|---|---|---|
| d4fe8edd52 | |||
| 90de455035 |
20
core/alsa-lib/alsa-lib.toml
Normal file
20
core/alsa-lib/alsa-lib.toml
Normal 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"""
|
||||
@@ -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"""
|
||||
|
||||
@@ -23,11 +23,14 @@ sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
update_check = "https://codeberg.org/api/v1/repos/dwl/dwl/releases/latest"
|
||||
|
||||
[dependencies]
|
||||
run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland"]
|
||||
run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland", "libxcursor"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = ""
|
||||
# Copy DarkForge config.h before building — dwl is configured at compile time
|
||||
# The config.h lives at /etc/dwl/config.h on the installed system and is also
|
||||
# deployed by the installer from configs/dwl/config.h
|
||||
configure = """cp /etc/dwl/config.h config.h 2>/dev/null || true"""
|
||||
make = "make"
|
||||
install = "make DESTDIR=${PKG} PREFIX=/usr install"
|
||||
|
||||
@@ -10,7 +10,11 @@ url = "https://archive.mozilla.org/pub/firefox/releases/${version}/source/firefo
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "dbus", "glib", "pango", "cairo", "freetype", "fontconfig", "libffi", "openssl", "zlib"]
|
||||
# Firefox needs: PipeWire for audio, alsa-lib for fallback, X11 libs for XWayland mode,
|
||||
# liberation-fonts for readable web content
|
||||
run = ["glibc", "dbus", "glib", "pango", "cairo", "freetype", "fontconfig", "libffi",
|
||||
"openssl", "zlib", "pipewire", "alsa-lib", "libx11", "libxext", "libxrender",
|
||||
"libxcomposite", "libxdamage", "libxfixes", "liberation-fonts"]
|
||||
build = ["gcc", "make", "python", "perl", "pkg-config", "autoconf", "rust", "cbindgen", "nodejs", "nasm"]
|
||||
|
||||
[build]
|
||||
|
||||
25
extra/liberation-fonts/liberation-fonts.toml
Normal file
25
extra/liberation-fonts/liberation-fonts.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "liberation-fonts"
|
||||
version = "2.1.5"
|
||||
description = "Liberation font family — metrically compatible with Arial, Times New Roman, Courier New"
|
||||
url = "https://github.com/liberationfonts/liberation-fonts"
|
||||
license = "OFL-1.1"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
# Font package — no runtime library deps, just fontconfig to register them
|
||||
run = ["fontconfig"]
|
||||
build = []
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = ""
|
||||
make = ""
|
||||
install = """
|
||||
mkdir -p ${PKG}/usr/share/fonts/liberation
|
||||
cp *.ttf ${PKG}/usr/share/fonts/liberation/
|
||||
mkdir -p ${PKG}/etc/fonts/conf.d
|
||||
"""
|
||||
20
extra/libx11/libx11.toml
Normal file
20
extra/libx11/libx11.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libx11"
|
||||
version = "1.8.10"
|
||||
description = "Core X11 protocol client library — required by all X11/XWayland applications"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libX11-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "xcb", "libxau", "libxdmcp"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto", "xtrans"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static --enable-xthreads"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxcomposite/libxcomposite.toml
Normal file
20
extra/libxcomposite/libxcomposite.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxcomposite"
|
||||
version = "0.4.6"
|
||||
description = "X11 Composite extension library — off-screen window compositing"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXcomposite-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxfixes"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxcursor/libxcursor.toml
Normal file
20
extra/libxcursor/libxcursor.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxcursor"
|
||||
version = "1.2.3"
|
||||
description = "X11 cursor management library — themed cursors for X11/XWayland"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXcursor-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxfixes", "libxrender"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxdamage/libxdamage.toml
Normal file
20
extra/libxdamage/libxdamage.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxdamage"
|
||||
version = "1.1.6"
|
||||
description = "X11 Damage extension library — tracks changed screen regions for compositing"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXdamage-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxfixes"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxext/libxext.toml
Normal file
20
extra/libxext/libxext.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxext"
|
||||
version = "1.3.6"
|
||||
description = "X11 miscellaneous extensions library — SHAPE, MIT-SHM, DPMS, Sync"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXext-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxfixes/libxfixes.toml
Normal file
20
extra/libxfixes/libxfixes.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxfixes"
|
||||
version = "6.0.1"
|
||||
description = "X11 Fixes extension library — cursor visibility, region support"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXfixes-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxi/libxi.toml
Normal file
20
extra/libxi/libxi.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxi"
|
||||
version = "1.8.2"
|
||||
description = "X11 Input extension library — input device management for XWayland/X11 apps"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXi-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxext", "libxfixes"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxrandr/libxrandr.toml
Normal file
20
extra/libxrandr/libxrandr.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxrandr"
|
||||
version = "1.5.4"
|
||||
description = "X11 RandR extension library — multi-monitor and resolution management"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXrandr-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxext", "libxrender"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxrender/libxrender.toml
Normal file
20
extra/libxrender/libxrender.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxrender"
|
||||
version = "0.9.12"
|
||||
description = "X11 Render extension library — anti-aliased font rendering and compositing"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXrender-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libxtst/libxtst.toml
Normal file
20
extra/libxtst/libxtst.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libxtst"
|
||||
version = "1.2.5"
|
||||
description = "X11 Testing/Recording extension library — needed by Steam and accessibility tools"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXtst-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "libx11", "libxext", "libxi"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
@@ -10,11 +10,18 @@ url = "https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/${version}/pip
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "dbus", "libffi", "ncurses"]
|
||||
run = ["glibc", "dbus", "libffi", "ncurses", "alsa-lib"]
|
||||
build = ["gcc", "meson", "ninja", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
configure = """meson setup build --prefix=/usr --buildtype=release -Dsession-managers=wireplumber -Djack=disabled -Dsystemd=disabled"""
|
||||
# Builds both pipewire and pipewire-pulse (PulseAudio compatibility server)
|
||||
# pipewire-pulse is required for Firefox and Steam audio output
|
||||
configure = """meson setup build --prefix=/usr --buildtype=release \
|
||||
-Dsession-managers=wireplumber \
|
||||
-Djack=disabled \
|
||||
-Dsystemd=disabled \
|
||||
-Dpipewire-alsa=enabled \
|
||||
-Dpipewire-pulse=enabled"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
|
||||
@@ -15,6 +15,10 @@ build = ["meson", "ninja", "pkg-config", "gettext", "perl"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
configure = """meson setup build --prefix=/usr --buildtype=release -Dsession_tracking=libelogind -Dsystemdsystemunitdir=no -Djs_engine=duktape"""
|
||||
# Session tracking disabled — we use seatd for seat management instead of
|
||||
# elogind/systemd-logind. polkit still works for password prompts via the
|
||||
# lxqt-policykit-agent (started in .zprofile). Active session detection
|
||||
# falls back to checking if the requesting process is on the active VT.
|
||||
configure = """meson setup build --prefix=/usr --buildtype=release -Dsession_tracking=disabled -Dsystemdsystemunitdir=no -Djs_engine=duktape"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
|
||||
20
extra/xorgproto/xorgproto.toml
Normal file
20
extra/xorgproto/xorgproto.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "xorgproto"
|
||||
version = "2024.1"
|
||||
description = "X.Org protocol headers — combined X11 protocol definitions"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/proto/xorgproto-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = []
|
||||
build = ["meson", "ninja"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
configure = """meson setup build --prefix=/usr"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
20
extra/xtrans/xtrans.toml
Normal file
20
extra/xtrans/xtrans.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "xtrans"
|
||||
version = "1.5.2"
|
||||
description = "X transport library — network transport abstraction for X11"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/xtrans-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = []
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-alsa-lib/lib32-alsa-lib.toml
Normal file
20
gaming/lib32-alsa-lib/lib32-alsa-lib.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-alsa-lib"
|
||||
version = "1.2.13"
|
||||
description = "32-bit ALSA sound library — needed by Steam/Wine for audio"
|
||||
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 = ["lib32-glibc"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-curl/lib32-curl.toml
Normal file
20
gaming/lib32-curl/lib32-curl.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-curl"
|
||||
version = "8.12.1"
|
||||
description = "32-bit URL retrieval library"
|
||||
url = "https://curl.se/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://curl.se/download/curl-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-openssl", "lib32-zlib"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --with-openssl"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-dbus/lib32-dbus.toml
Normal file
20
gaming/lib32-dbus/lib32-dbus.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-dbus"
|
||||
version = "1.14.10"
|
||||
description = "32-bit D-Bus message bus library"
|
||||
url = "https://www.freedesktop.org/wiki/Software/dbus/"
|
||||
license = "AFL-2.1 OR GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-expat"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-systemd --disable-tests"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-expat/lib32-expat.toml
Normal file
20
gaming/lib32-expat/lib32-expat.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-expat"
|
||||
version = "2.7.1"
|
||||
description = "32-bit XML parser library"
|
||||
url = "https://libexpat.github.io/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/libexpat/libexpat/releases/download/R_2_7_1/expat-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-fontconfig/lib32-fontconfig.toml
Normal file
20
gaming/lib32-fontconfig/lib32-fontconfig.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-fontconfig"
|
||||
version = "2.16.0"
|
||||
description = "32-bit font configuration library"
|
||||
url = "https://www.freedesktop.org/wiki/Software/fontconfig/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://www.freedesktop.org/software/fontconfig/release/fontconfig-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-freetype", "lib32-expat"]
|
||||
build = ["gcc", "meson", "ninja", "pkg-config", "gperf"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" meson setup build --prefix=/usr --libdir=/usr/lib32"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
20
gaming/lib32-freetype/lib32-freetype.toml
Normal file
20
gaming/lib32-freetype/lib32-freetype.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-freetype"
|
||||
version = "2.13.3"
|
||||
description = "32-bit font rendering library"
|
||||
url = "https://freetype.org/"
|
||||
license = "FTL OR GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://download.savannah.gnu.org/releases/freetype/freetype-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-zlib"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-static --enable-freetype-config"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-glibc/lib32-glibc.toml
Normal file
20
gaming/lib32-glibc/lib32-glibc.toml
Normal 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"""
|
||||
20
gaming/lib32-libx11/lib32-libx11.toml
Normal file
20
gaming/lib32-libx11/lib32-libx11.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-libx11"
|
||||
version = "1.8.10"
|
||||
description = "32-bit core X11 client library — needed by Steam and Wine under XWayland"
|
||||
url = "https://xorg.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libX11-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-libxcb"]
|
||||
build = ["gcc", "make", "pkg-config", "xorgproto", "xtrans"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-libxcb/lib32-libxcb.toml
Normal file
20
gaming/lib32-libxcb/lib32-libxcb.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-libxcb"
|
||||
version = "1.17.0"
|
||||
description = "32-bit X protocol C-language Binding"
|
||||
url = "https://xcb.freedesktop.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libxcb-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc"]
|
||||
build = ["gcc", "make", "pkg-config", "python", "xcb-proto"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
22
gaming/lib32-mesa/lib32-mesa.toml
Normal file
22
gaming/lib32-mesa/lib32-mesa.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[package]
|
||||
name = "lib32-mesa"
|
||||
version = "25.0.3"
|
||||
description = "32-bit OpenGL/Vulkan graphics library — required by Steam and Proton games"
|
||||
url = "https://www.mesa3d.org/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://archive.mesa3d.org/mesa-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-zlib", "lib32-expat", "lib32-libx11", "lib32-libxcb"]
|
||||
build = ["gcc", "meson", "ninja", "pkg-config", "python", "flex", "bison"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
# Cross-compile for 32-bit with Vulkan and basic gallium drivers
|
||||
# zink allows OpenGL over Vulkan, swrast for software fallback
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" meson setup build --prefix=/usr --libdir=/usr/lib32 -Dvulkan-drivers=auto -Dgallium-drivers=swrast,zink -Dplatforms=x11,wayland -Dglx=dri -Degl=enabled"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
20
gaming/lib32-ncurses/lib32-ncurses.toml
Normal file
20
gaming/lib32-ncurses/lib32-ncurses.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-ncurses"
|
||||
version = "6.5"
|
||||
description = "32-bit terminal control library"
|
||||
url = "https://invisible-island.net/ncurses/"
|
||||
license = "MIT"
|
||||
|
||||
[source]
|
||||
url = "https://ftp.gnu.org/gnu/ncurses/ncurses-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" ./configure --prefix=/usr --libdir=/usr/lib32 --host=i686-pc-linux-gnu --with-shared --without-normal --with-cxx-shared --without-debug --without-ada --enable-widec"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
23
gaming/lib32-nvidia/lib32-nvidia.toml
Normal file
23
gaming/lib32-nvidia/lib32-nvidia.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
[package]
|
||||
name = "lib32-nvidia"
|
||||
version = "570.133.07"
|
||||
description = "32-bit NVIDIA compatibility libraries — required by Steam and Wine/Proton"
|
||||
url = "https://www.nvidia.com/"
|
||||
license = "Proprietary"
|
||||
|
||||
[source]
|
||||
# NVIDIA .run installer contains both 64-bit and 32-bit libraries
|
||||
url = "https://download.nvidia.com/XFree86/Linux-x86_64/${version}/NVIDIA-Linux-x86_64-${version}.run"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-mesa"]
|
||||
build = []
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
# Extract 32-bit compatibility libs from the NVIDIA .run installer
|
||||
# The .run file is a self-extracting archive
|
||||
configure = """chmod +x NVIDIA-Linux-x86_64-${version}.run && ./NVIDIA-Linux-x86_64-${version}.run --extract-only"""
|
||||
make = ""
|
||||
install = """mkdir -p ${PKG}/usr/lib32 && cp NVIDIA-Linux-x86_64-${version}/32/lib*.so* ${PKG}/usr/lib32/ 2>/dev/null || cp NVIDIA-Linux-x86_64-${version}/libGL.so.${version} ${PKG}/usr/lib32/"""
|
||||
20
gaming/lib32-openssl/lib32-openssl.toml
Normal file
20
gaming/lib32-openssl/lib32-openssl.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-openssl"
|
||||
version = "3.5.0"
|
||||
description = "32-bit TLS/SSL library"
|
||||
url = "https://www.openssl.org/"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://www.openssl.org/source/openssl-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc", "lib32-zlib"]
|
||||
build = ["gcc", "make", "perl"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """CC="gcc -m32" ./Configure linux-x86 shared --prefix=/usr --libdir=lib32"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
gaming/lib32-zlib/lib32-zlib.toml
Normal file
20
gaming/lib32-zlib/lib32-zlib.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lib32-zlib"
|
||||
version = "1.3.1"
|
||||
description = "32-bit compression library"
|
||||
url = "https://zlib.net/"
|
||||
license = "zlib"
|
||||
|
||||
[source]
|
||||
url = "https://zlib.net/zlib-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["lib32-glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" ./configure --prefix=/usr --libdir=/usr/lib32"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
@@ -10,7 +10,17 @@ url = "https://repo.steampowered.com/steam/archive/stable/steam_${version}.tar.g
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "curl", "dbus", "freetype", "openssl", "nvidia-open"]
|
||||
# Steam is an X11 app running under XWayland — needs full X11 stack
|
||||
# Also needs fonts, audio (PipeWire + pipewire-pulse for PulseAudio compat)
|
||||
# 64-bit native deps
|
||||
# 64-bit native deps + 32-bit multilib (Steam runtime and Proton games need 32-bit libs)
|
||||
run = ["glibc", "curl", "dbus", "freetype", "openssl", "nvidia-open",
|
||||
"libx11", "libxext", "libxrender", "libxfixes", "libxcomposite",
|
||||
"libxdamage", "libxi", "libxtst", "libxcursor", "libxrandr",
|
||||
"pipewire", "alsa-lib", "fontconfig", "liberation-fonts",
|
||||
"lib32-glibc", "lib32-zlib", "lib32-openssl", "lib32-curl",
|
||||
"lib32-dbus", "lib32-freetype", "lib32-fontconfig", "lib32-alsa-lib",
|
||||
"lib32-libx11", "lib32-libxcb", "lib32-mesa", "lib32-nvidia"]
|
||||
build = ["make"]
|
||||
|
||||
[build]
|
||||
|
||||
@@ -10,7 +10,10 @@ url = "https://dl.winehq.org/wine/source/10.x/wine-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "freetype", "fontconfig", "libpng", "openssl", "vulkan-loader", "sdl2", "gnutls"]
|
||||
# Wine needs both 64-bit and 32-bit libraries for WoW64 (Windows on Windows 64)
|
||||
run = ["glibc", "freetype", "fontconfig", "libpng", "openssl", "vulkan-loader", "sdl2", "gnutls",
|
||||
"lib32-glibc", "lib32-zlib", "lib32-openssl", "lib32-freetype", "lib32-fontconfig",
|
||||
"lib32-alsa-lib", "lib32-libx11", "lib32-libxcb", "lib32-mesa", "lib32-ncurses"]
|
||||
build = ["gcc", "make", "flex", "bison", "pkg-config", "autoconf"]
|
||||
|
||||
[build]
|
||||
|
||||
Reference in New Issue
Block a user