50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
38 lines
723 B
TOML
38 lines
723 B
TOML
# TODO: Need to port more libs
|
|
# newer version requires c_std=gnu23
|
|
[source]
|
|
tar = "https://download.gnome.org/sources/epiphany/46/epiphany-46.5.tar.xz"
|
|
[build]
|
|
template = "meson"
|
|
mesonflags = [
|
|
"-Dunit_tests=disabled",
|
|
"-Dman-pages=disabled",
|
|
]
|
|
dependencies = [
|
|
"cairo",
|
|
# "gck2",
|
|
# "gcr4",
|
|
"gdk-pixbuf",
|
|
"gio2",
|
|
# "gio-unix2",
|
|
# "glib2",
|
|
# "granite7",
|
|
# "gsettings-desktop-schemas",
|
|
"gstreamer",
|
|
"gtk4",
|
|
# "gtk4-unix-print",
|
|
# "hogweed",
|
|
# "iso-codes",
|
|
"json-glib",
|
|
"libarchive",
|
|
"libadwaita",
|
|
# "libsecret",
|
|
"libsoup",
|
|
"libxml2",
|
|
"libnettle",
|
|
# "libportal-gtk4",
|
|
"sqlite3",
|
|
# "webkitgtk6",
|
|
# "webkitgtk-web-process-extension6"
|
|
]
|