Files
RedBear-OS/recipes/wip/x11/xterm/recipe.toml
T
vasilito 50b731f1b7 Red Bear OS — microkernel OS in Rust, based on Redox
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
2026-04-12 19:05:00 +01:00

40 lines
884 B
TOML

[source]
tar = "https://invisible-island.net/archives/xterm/xterm-398.tgz"
blake3 = "c42112586b2c231681db9327df9d797953469e3b7cb2abe93b8f3f821597d528"
patches = ["redox.patch"]
[build]
dependencies = [
"expat",
"fontconfig",
"freetype2",
"libice",
"libpng",
"libpthread-stubs",
"libsm",
"libx11",
"libxau",
"libxaw",
"libxcb",
"libxext",
"libxft",
"libxmu",
"libxpm",
"libxrender",
"libxt",
"ncursesw",
"pcre2",
"x11proto",
"zlib",
]
template = "custom"
script = """
DYNAMIC_INIT
export CFLAGS="${CFLAGS} -I${COOKBOOK_SYSROOT}/usr/include/freetype2"
#TODO: why are LIBS not automatic?
export LIBS="-lXaw7 -lXmu -lXpm -lXt -lSM -lICE -lXft -lfreetype -lfontconfig -lXrender -lXext -lX11 -lxcb -lXau -lpcre2-8 -lexpat -lpng -lz"
cookbook_configure \
--with-pcre2 \
cf_cv_func_setitimer=no
"""