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
25 lines
413 B
TOML
25 lines
413 B
TOML
[source]
|
|
git = "https://github.com/jackpot51/libretro-super.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"zlib",
|
|
]
|
|
script = """
|
|
CORES=(
|
|
snes9x
|
|
)
|
|
|
|
pushd "${COOKBOOK_SOURCE}"
|
|
./libretro-fetch.sh "${CORES[@]}"
|
|
popd
|
|
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
|
|
export platform=Redox
|
|
export STATIC_LINKING=1
|
|
./libretro-build.sh "${CORES[@]}"
|
|
./libretro-install.sh "${COOKBOOK_STAGE}/share/libretro"
|
|
"""
|