Compare commits

...

3 Commits

Author SHA1 Message Date
d4fe8edd52 changed steam repo definition 2026-03-20 10:47:46 +01:00
90de455035 new repos 2026-03-20 10:25:48 +01:00
a0773c3c54 Add 16 missing dependency packages — all deps now resolve
Full dependency audit found 11 missing packages referenced by
freecad, firefox, neovim, and wezterm. Created those plus 5
transitive deps (xcb-proto, libxau, libxdmcp, tcl, tk).

New packages:
- boost-1.87.0, opencascade-7.8.1, xerces-c-3.2.5, swig-4.3.0
- tcl-8.6.16, tk-8.6.16, nodejs-22.16.0, cbindgen-0.28.0
- unibilium-2.1.2, libtermkey-0.22, libvterm-0.3.3, msgpack-c-6.1.0
- xcb-1.17.0, xcb-proto-1.17.0, libxau-1.0.12, libxdmcp-1.1.5

Total: 154 packages (67 core, 56 extra, 19 desktop, 12 gaming)
All dependencies fully resolve within the repository.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 12:17:59 +01:00
51 changed files with 932 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] [build]
system = "autotools" 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""" make = """make"""
install = """make DESTDIR=${PKG} install""" install = """make DESTDIR=${PKG} install"""

View File

@@ -23,11 +23,14 @@ sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
update_check = "https://codeberg.org/api/v1/repos/dwl/dwl/releases/latest" update_check = "https://codeberg.org/api/v1/repos/dwl/dwl/releases/latest"
[dependencies] [dependencies]
run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland"] run = ["wlroots", "wayland", "wayland-protocols", "libinput", "xwayland", "libxcursor"]
build = ["gcc", "make", "pkg-config"] build = ["gcc", "make", "pkg-config"]
[build] [build]
system = "custom" 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" make = "make"
install = "make DESTDIR=${PKG} PREFIX=/usr install" install = "make DESTDIR=${PKG} PREFIX=/usr install"

View File

@@ -10,7 +10,11 @@ url = "https://archive.mozilla.org/pub/firefox/releases/${version}/source/firefo
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies] [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 = ["gcc", "make", "python", "perl", "pkg-config", "autoconf", "rust", "cbindgen", "nodejs", "nasm"]
[build] [build]

20
extra/boost/boost.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "boost"
version = "1.87.0"
description = "Peer-reviewed portable C++ source libraries"
url = "https://www.boost.org/"
license = "BSL-1.0"
[source]
url = "https://github.com/boostorg/boost/releases/download/boost-${version}/boost-${version}-b2-nodocs.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "zlib", "bzip2", "xz", "zstd", "python"]
build = ["gcc", "make"]
[build]
system = "custom"
configure = """./bootstrap.sh --prefix=/usr --with-python=python3"""
make = """./b2 stage -j32 threading=multi link=shared"""
install = """./b2 install --prefix=${PKG}/usr"""

View File

@@ -0,0 +1,20 @@
[package]
name = "cbindgen"
version = "0.28.0"
description = "Generate C bindings from Rust code"
url = "https://github.com/mozilla/cbindgen"
license = "MPL-2.0"
[source]
url = "https://github.com/mozilla/cbindgen/archive/v${version}/cbindgen-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "rust"]
build = ["rust"]
[build]
system = "cargo"
configure = """"""
make = """cargo build --release"""
install = """install -Dm755 target/release/cbindgen ${PKG}/usr/bin/cbindgen"""

View 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
"""

View File

@@ -0,0 +1,20 @@
[package]
name = "libtermkey"
version = "0.22"
description = "Terminal keypress reading library"
url = "http://www.leonerd.org.uk/code/libtermkey/"
license = "MIT"
[source]
url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "unibilium"]
build = ["gcc", "make", "pkg-config", "libtool"]
[build]
system = "custom"
configure = """"""
make = """make PREFIX=/usr"""
install = """make DESTDIR=${PKG} PREFIX=/usr install"""

View File

@@ -0,0 +1,20 @@
[package]
name = "libvterm"
version = "0.3.3"
description = "Virtual terminal emulator library"
url = "https://www.leonerd.org.uk/code/libvterm/"
license = "MIT"
[source]
url = "https://www.leonerd.org.uk/code/libvterm/libvterm-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc"]
build = ["gcc", "make", "libtool"]
[build]
system = "custom"
configure = """"""
make = """make PREFIX=/usr"""
install = """make DESTDIR=${PKG} PREFIX=/usr install"""

20
extra/libx11/libx11.toml Normal file
View 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/libxau/libxau.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "libxau"
version = "1.0.12"
description = "X11 authorisation library"
url = "https://xorg.freedesktop.org/"
license = "MIT"
[source]
url = "https://xorg.freedesktop.org/archive/individual/lib/libXau-${version}.tar.xz"
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

@@ -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"""

View 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"""

View 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"""

View File

@@ -0,0 +1,20 @@
[package]
name = "libxdmcp"
version = "1.1.5"
description = "X Display Manager Control Protocol library"
url = "https://xorg.freedesktop.org/"
license = "MIT"
[source]
url = "https://xorg.freedesktop.org/archive/individual/lib/libXdmcp-${version}.tar.xz"
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

@@ -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"""

View 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
View 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"""

View 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"""

View 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"""

View 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"""

View File

@@ -0,0 +1,20 @@
[package]
name = "msgpack-c"
version = "6.1.0"
description = "MessagePack serialization library for C"
url = "https://msgpack.org/"
license = "BSL-1.0"
[source]
url = "https://github.com/msgpack/msgpack-c/releases/download/c-${version}/msgpack-c-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc"]
build = ["gcc", "cmake", "ninja"]
[build]
system = "cmake"
configure = """cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DMSGPACK_BUILD_TESTS=OFF"""
make = """ninja -C build"""
install = """DESTDIR=${PKG} ninja -C build install"""

20
extra/nodejs/nodejs.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "nodejs"
version = "22.16.0"
description = "JavaScript runtime built on V8"
url = "https://nodejs.org/"
license = "MIT"
[source]
url = "https://nodejs.org/dist/v${version}/node-v${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "openssl", "zlib", "python"]
build = ["gcc", "make", "python"]
[build]
system = "custom"
configure = """./configure --prefix=/usr --shared-openssl --shared-zlib"""
make = """make -j32"""
install = """make DESTDIR=${PKG} install"""

View File

@@ -0,0 +1,20 @@
[package]
name = "opencascade"
version = "7.8.1"
description = "Open CASCADE Technology 3D modeling kernel"
url = "https://www.opencascade.com/"
license = "LGPL-2.1"
[source]
url = "https://git.dev.opencascade.org/repos/occt.git/snapshot/occt-V${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "freetype", "tcl", "tk", "libpng", "zlib"]
build = ["gcc", "cmake", "ninja"]
[build]
system = "cmake"
configure = """cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_MODULE_Draw=OFF -DUSE_TBB=OFF -DUSE_VTK=OFF -DUSE_FFMPEG=OFF"""
make = """ninja -C build"""
install = """DESTDIR=${PKG} ninja -C build install"""

View File

@@ -10,11 +10,18 @@ url = "https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/${version}/pip
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies] [dependencies]
run = ["glibc", "dbus", "libffi", "ncurses"] run = ["glibc", "dbus", "libffi", "ncurses", "alsa-lib"]
build = ["gcc", "meson", "ninja", "pkg-config"] build = ["gcc", "meson", "ninja", "pkg-config"]
[build] [build]
system = "meson" 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""" make = """ninja -C build"""
install = """DESTDIR=${PKG} ninja -C build install""" install = """DESTDIR=${PKG} ninja -C build install"""

View File

@@ -15,6 +15,10 @@ build = ["meson", "ninja", "pkg-config", "gettext", "perl"]
[build] [build]
system = "meson" 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""" make = """ninja -C build"""
install = """DESTDIR=${PKG} ninja -C build install""" install = """DESTDIR=${PKG} ninja -C build install"""

20
extra/swig/swig.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "swig"
version = "4.3.0"
description = "Interface generator for scripting languages"
url = "https://www.swig.org/"
license = "GPL-3.0"
[source]
url = "https://downloads.sourceforge.net/swig/swig-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "pcre2", "python", "perl"]
build = ["gcc", "make"]
[build]
system = "autotools"
configure = """./configure --prefix=/usr"""
make = """make"""
install = """make DESTDIR=${PKG} install"""

20
extra/tcl/tcl.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "tcl"
version = "8.6.16"
description = "Tool Command Language"
url = "https://www.tcl.tk/"
license = "TCL"
[source]
url = "https://downloads.sourceforge.net/tcl/tcl${version}-src.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "zlib"]
build = ["gcc", "make"]
[build]
system = "autotools"
configure = """cd unix && ./configure --prefix=/usr --enable-64bit --enable-threads"""
make = """make"""
install = """make DESTDIR=${PKG} install && ln -sf tclsh8.6 ${PKG}/usr/bin/tclsh"""

20
extra/tk/tk.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "tk"
version = "8.6.16"
description = "Tk GUI toolkit for Tcl"
url = "https://www.tcl.tk/"
license = "TCL"
[source]
url = "https://downloads.sourceforge.net/tcl/tk${version}-src.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "tcl", "libpng", "zlib"]
build = ["gcc", "make"]
[build]
system = "autotools"
configure = """cd unix && ./configure --prefix=/usr --enable-64bit --enable-threads --with-tcl=/usr/lib"""
make = """make"""
install = """make DESTDIR=${PKG} install"""

View File

@@ -0,0 +1,20 @@
[package]
name = "unibilium"
version = "2.1.2"
description = "Terminfo parsing library"
url = "https://github.com/neovim/unibilium"
license = "LGPL-3.0"
[source]
url = "https://github.com/neovim/unibilium/archive/v${version}/unibilium-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc"]
build = ["gcc", "make", "libtool"]
[build]
system = "custom"
configure = """"""
make = """make PREFIX=/usr"""
install = """make DESTDIR=${PKG} PREFIX=/usr install"""

View File

@@ -0,0 +1,20 @@
[package]
name = "xcb-proto"
version = "1.17.0"
description = "X protocol C-language Binding protocol descriptions"
url = "https://xcb.freedesktop.org/"
license = "MIT"
[source]
url = "https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = []
build = ["python"]
[build]
system = "autotools"
configure = """./configure --prefix=/usr"""
make = """make"""
install = """make DESTDIR=${PKG} install"""

20
extra/xcb/xcb.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "xcb"
version = "1.17.0"
description = "X protocol C-language Binding (libxcb)"
url = "https://xcb.freedesktop.org/"
license = "MIT"
[source]
url = "https://xorg.freedesktop.org/archive/individual/lib/libxcb-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "xcb-proto", "libxau", "libxdmcp"]
build = ["gcc", "make", "pkg-config", "python"]
[build]
system = "autotools"
configure = """./configure --prefix=/usr --disable-static"""
make = """make"""
install = """make DESTDIR=${PKG} install"""

View File

@@ -0,0 +1,20 @@
[package]
name = "xerces-c"
version = "3.2.5"
description = "XML parser library for C++"
url = "https://xerces.apache.org/xerces-c/"
license = "Apache-2.0"
[source]
url = "https://dlcdn.apache.org/xerces/c/3/sources/xerces-c-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "curl"]
build = ["gcc", "cmake", "ninja"]
[build]
system = "cmake"
configure = """cmake -B build -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release"""
make = """ninja -C build"""
install = """DESTDIR=${PKG} ninja -C build install"""

View 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
View 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"""

View 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"""

View 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"""

View 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"""

View 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"""

View 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"""

View 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"""

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"""

View 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"""

View 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"""

View 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"""

View 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"""

View 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/"""

View 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"""

View 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"""

View File

@@ -10,7 +10,17 @@ url = "https://repo.steampowered.com/steam/archive/stable/steam_${version}.tar.g
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies] [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 = ["make"]
[build] [build]

View File

@@ -10,7 +10,10 @@ url = "https://dl.winehq.org/wine/source/10.x/wine-${version}.tar.xz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies] [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 = ["gcc", "make", "flex", "bison", "pkg-config", "autoconf"]
[build] [build]