new repos

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

View File

@@ -0,0 +1,25 @@
[package]
name = "liberation-fonts"
version = "2.1.5"
description = "Liberation font family — metrically compatible with Arial, Times New Roman, Courier New"
url = "https://github.com/liberationfonts/liberation-fonts"
license = "OFL-1.1"
[source]
url = "https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-${version}.tar.gz"
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
# Font package — no runtime library deps, just fontconfig to register them
run = ["fontconfig"]
build = []
[build]
system = "custom"
configure = ""
make = ""
install = """
mkdir -p ${PKG}/usr/share/fonts/liberation
cp *.ttf ${PKG}/usr/share/fonts/liberation/
mkdir -p ${PKG}/etc/fonts/conf.d
"""

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

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

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

View File

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

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