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

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

View File

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