Compare commits
4 Commits
b83ae5fcd9
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d4fe8edd52 | |||
| 90de455035 | |||
| a0773c3c54 | |||
| 0e27540a06 |
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]
|
||||
|
||||
20
extra/boost/boost.toml
Normal file
20
extra/boost/boost.toml
Normal 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"""
|
||||
20
extra/cbindgen/cbindgen.toml
Normal file
20
extra/cbindgen/cbindgen.toml
Normal 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"""
|
||||
20
extra/edk2-ovmf/edk2-ovmf.toml
Normal file
20
extra/edk2-ovmf/edk2-ovmf.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "edk2-ovmf"
|
||||
version = "202411"
|
||||
description = "UEFI firmware for QEMU virtual machines"
|
||||
url = "https://github.com/tianocore/edk2"
|
||||
license = "BSD-2-Clause"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/tianocore/edk2/archive/edk2-stable${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = []
|
||||
build = ["gcc", "make", "python", "nasm"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """"""
|
||||
make = """make -C BaseTools && source edksetup.sh && build -a X64 -t GCC5 -p OvmfPkg/OvmfPkgX64.dsc -b RELEASE"""
|
||||
install = """install -Dm644 Build/OvmfX64/RELEASE_GCC5/FV/OVMF.fd ${PKG}/usr/share/edk2/x64/OVMF.fd"""
|
||||
20
extra/efibootmgr/efibootmgr.toml
Normal file
20
extra/efibootmgr/efibootmgr.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "efibootmgr"
|
||||
version = "18"
|
||||
description = "EFI Boot Manager"
|
||||
url = "https://github.com/rhboot/efibootmgr"
|
||||
license = "GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/rhboot/efibootmgr/archive/${version}/efibootmgr-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "efivar"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """"""
|
||||
make = """make EFIDIR=darkforge EFI_LOADER=vmlinuz.efi"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/efivar/efivar.toml
Normal file
20
extra/efivar/efivar.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "efivar"
|
||||
version = "39"
|
||||
description = "EFI variable management library"
|
||||
url = "https://github.com/rhboot/efivar"
|
||||
license = "LGPL-2.1"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/rhboot/efivar/archive/${version}/efivar-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/htop/htop.toml
Normal file
20
extra/htop/htop.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "htop"
|
||||
version = "3.4.0"
|
||||
description = "Interactive process viewer"
|
||||
url = "https://htop.dev/"
|
||||
license = "GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/htop-dev/htop/releases/download/${version}/htop-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "ncurses"]
|
||||
build = ["gcc", "make", "autoconf", "automake"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./autogen.sh && ./configure --prefix=/usr --enable-unicode"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
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/libevent/libevent.toml
Normal file
20
extra/libevent/libevent.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "libevent"
|
||||
version = "2.1.12"
|
||||
description = "Event notification library"
|
||||
url = "https://libevent.org/"
|
||||
license = "BSD-3-Clause"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/libevent/libevent/releases/download/release-${version}-stable/libevent-${version}-stable.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "openssl"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-static"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/libtermkey/libtermkey.toml
Normal file
20
extra/libtermkey/libtermkey.toml
Normal 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"""
|
||||
20
extra/libvterm/libvterm.toml
Normal file
20
extra/libvterm/libvterm.toml
Normal 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
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/libxau/libxau.toml
Normal file
20
extra/libxau/libxau.toml
Normal 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"""
|
||||
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/libxdmcp/libxdmcp.toml
Normal file
20
extra/libxdmcp/libxdmcp.toml
Normal 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"""
|
||||
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"""
|
||||
20
extra/lz4/lz4.toml
Normal file
20
extra/lz4/lz4.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "lz4"
|
||||
version = "1.10.0"
|
||||
description = "Fast LZ compression algorithm"
|
||||
url = "https://lz4.github.io/lz4/"
|
||||
license = "BSD-2-Clause"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/lz4/lz4/archive/v${version}/lz4-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """"""
|
||||
make = """make PREFIX=/usr"""
|
||||
install = """make DESTDIR=${PKG} PREFIX=/usr install"""
|
||||
20
extra/msgpack-c/msgpack-c.toml
Normal file
20
extra/msgpack-c/msgpack-c.toml
Normal 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/mtools/mtools.toml
Normal file
20
extra/mtools/mtools.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "mtools"
|
||||
version = "4.0.48"
|
||||
description = "Tools for manipulating FAT filesystems"
|
||||
url = "https://www.gnu.org/software/mtools/"
|
||||
license = "GPL-3.0"
|
||||
|
||||
[source]
|
||||
url = "https://ftp.gnu.org/gnu/mtools/mtools-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/nasm/nasm.toml
Normal file
20
extra/nasm/nasm.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "nasm"
|
||||
version = "2.16.03"
|
||||
description = "Netwide Assembler (x86/x64)"
|
||||
url = "https://www.nasm.us/"
|
||||
license = "BSD-2-Clause"
|
||||
|
||||
[source]
|
||||
url = "https://www.nasm.us/pub/nasm/releasebuilds/${version}/nasm-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/neovim/neovim.toml
Normal file
20
extra/neovim/neovim.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "neovim"
|
||||
version = "0.11.1"
|
||||
description = "Hyperextensible Vim-based text editor"
|
||||
url = "https://neovim.io/"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/neovim/neovim/archive/v${version}/neovim-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "lua", "libxml2", "unibilium", "libtermkey", "libvterm", "msgpack-c"]
|
||||
build = ["gcc", "cmake", "ninja", "pkg-config"]
|
||||
|
||||
[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"""
|
||||
20
extra/nodejs/nodejs.toml
Normal file
20
extra/nodejs/nodejs.toml
Normal 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"""
|
||||
20
extra/opencascade/opencascade.toml
Normal file
20
extra/opencascade/opencascade.toml
Normal 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"""
|
||||
@@ -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/qemu/qemu.toml
Normal file
20
extra/qemu/qemu.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "qemu"
|
||||
version = "9.2.3"
|
||||
description = "Machine emulator and virtualizer"
|
||||
url = "https://www.qemu.org/"
|
||||
license = "GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://download.qemu.org/qemu-${version}.tar.xz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "glib", "pixman", "zlib", "zstd", "libxml2", "curl", "sdl2"]
|
||||
build = ["gcc", "make", "meson", "ninja", "pkg-config", "python", "flex", "bison"]
|
||||
|
||||
[build]
|
||||
system = "meson"
|
||||
configure = """meson setup build --prefix=/usr --buildtype=release -Dgtk=disabled -Dsdl=enabled -Dvnc=disabled -Ddocs=disabled -Dspice=disabled"""
|
||||
make = """ninja -C build"""
|
||||
install = """DESTDIR=${PKG} ninja -C build install"""
|
||||
20
extra/rsync/rsync.toml
Normal file
20
extra/rsync/rsync.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "rsync"
|
||||
version = "3.4.1"
|
||||
description = "Fast file transfer utility"
|
||||
url = "https://rsync.samba.org/"
|
||||
license = "GPL-3.0"
|
||||
|
||||
[source]
|
||||
url = "https://download.samba.org/pub/rsync/rsync-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "zlib", "zstd", "openssl"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr --disable-xxhash --disable-lz4"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/squashfs-tools/squashfs-tools.toml
Normal file
20
extra/squashfs-tools/squashfs-tools.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "squashfs-tools"
|
||||
version = "4.6.1"
|
||||
description = "Tools for squashfs filesystems"
|
||||
url = "https://github.com/plougher/squashfs-tools"
|
||||
license = "GPL-2.0"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/plougher/squashfs-tools/archive/${version}/squashfs-tools-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "zlib", "zstd", "xz", "lz4"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "custom"
|
||||
configure = """"""
|
||||
make = """make -C squashfs-tools ZSTD_SUPPORT=1 XZ_SUPPORT=1 LZ4_SUPPORT=1"""
|
||||
install = """make -C squashfs-tools INSTALL_DIR=${PKG}/usr/bin install"""
|
||||
20
extra/swig/swig.toml
Normal file
20
extra/swig/swig.toml
Normal 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
20
extra/tcl/tcl.toml
Normal 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
20
extra/tk/tk.toml
Normal 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"""
|
||||
20
extra/tmux/tmux.toml
Normal file
20
extra/tmux/tmux.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "tmux"
|
||||
version = "3.5a"
|
||||
description = "Terminal multiplexer"
|
||||
url = "https://tmux.github.io/"
|
||||
license = "ISC"
|
||||
|
||||
[source]
|
||||
url = "https://github.com/tmux/tmux/releases/download/${version}/tmux-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "ncurses", "libevent"]
|
||||
build = ["gcc", "make", "pkg-config"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} install"""
|
||||
20
extra/unibilium/unibilium.toml
Normal file
20
extra/unibilium/unibilium.toml
Normal 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"""
|
||||
20
extra/xcb-proto/xcb-proto.toml
Normal file
20
extra/xcb-proto/xcb-proto.toml
Normal 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
20
extra/xcb/xcb.toml
Normal 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"""
|
||||
20
extra/xerces-c/xerces-c.toml
Normal file
20
extra/xerces-c/xerces-c.toml
Normal 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"""
|
||||
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/xorriso/xorriso.toml
Normal file
20
extra/xorriso/xorriso.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "xorriso"
|
||||
version = "1.5.7"
|
||||
description = "ISO9660 image creation and manipulation"
|
||||
url = "https://www.gnu.org/software/xorriso/"
|
||||
license = "GPL-3.0"
|
||||
|
||||
[source]
|
||||
url = "https://www.gnu.org/software/xorriso/xorriso-${version}.tar.gz"
|
||||
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
||||
|
||||
[dependencies]
|
||||
run = ["glibc", "zlib", "readline"]
|
||||
build = ["gcc", "make"]
|
||||
|
||||
[build]
|
||||
system = "autotools"
|
||||
configure = """./configure --prefix=/usr"""
|
||||
make = """make"""
|
||||
install = """make DESTDIR=${PKG} 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