Files
RedBear-OS/recipes/libs/sdl1-mixer/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

31 lines
605 B
TOML

[source]
tar = "https://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz"
blake3 = "ef23bab2d42250dfdc51ce6939ee7b393973ff11a0dd3481f32180b489d2661c"
patches = ["redox.patch"]
script = """
./autogen.sh
"""
[build]
dependencies = [
"libogg",
"liborbital",
"libvorbis",
"sdl1",
]
template = "custom"
script = """
DYNAMIC_INIT
export LIBS="-lvorbis -logg"
COOKBOOK_CONFIGURE_FLAGS+=(
--enable-music-ogg
--enable-music-midi
--disable-sdltest
--disable-music-cmd
--disable-music-mp3
--disable-smpegtest
--disable-music-mod
)
cookbook_configure
"""