Files
RedBear-OS/recipes/wip/libs/audio/openal/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

37 lines
821 B
TOML

[source]
tar = "https://github.com/kcat/openal-soft/archive/refs/tags/1.24.1.tar.gz"
blake3 = "da65f839d4cee560371d08fc977f90757f964f49b14655b1d8d43f779c90a815"
patches = [
"redox.patch"
]
[build]
template = "custom"
dependencies = [
"liborbital",
"libsndfile",
"mesa",
"sdl2",
"zlib",
]
script = """
DYNAMIC_INIT
export CFLAGS="${CFLAGS} -I${COOKBOOK_SYSROOT}/include/SDL2"
export CXXFLAGS="${CXXFLAGS} -I${COOKBOOK_SYSROOT}/include/SDL2"
COOKBOOK_CMAKE_FLAGS+=(
-DALSOFT_EXAMPLES=OFF
-DALSOFT_INSTALL_EXAMPLES=OFF
-DALSOFT_INSTALL_UTILS=OFF
-DALSOFT_UTILS=OFF
-DALSOFT_BACKEND_SDL2=ON
-DALSOFT_REQUIRE_SDL2=ON
)
if [ "${COOKBOOK_DYNAMIC}" == "1" ]
then
COOKBOOK_CMAKE_FLAGS+=(-DLIBTYPE=SHARED)
else
COOKBOOK_CMAKE_FLAGS+=(-DLIBTYPE=STATIC)
fi
cookbook_cmake
"""