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
979 B
TOML
38 lines
979 B
TOML
#TODO not compiled or tested yet
|
|
# build instructions: https://github.com/hrydgard/ppsspp/wiki/Build-instructions
|
|
#git = "https://github.com/jackpot51/ppsspp" # wip orbital port
|
|
[source]
|
|
tar = "https://github.com/hrydgard/ppsspp/releases/download/v1.19.3/ppsspp-1.19.3.tar.xz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
#"liborbital",
|
|
"mesa",
|
|
"mesa-glu",
|
|
"sdl2",
|
|
"sdl2-ttf",
|
|
"zlib",
|
|
"glew",
|
|
"fontconfig",
|
|
"curl",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
COOKBOOK_CMAKE_FLAGS+=(
|
|
-DCMAKE_C_FLAGS="-I${COOKBOOK_SYSROOT}/include" -I${COOKBOOK_SYSROOT}/include/SDL2"
|
|
-DCMAKE_CXX_FLAGS="-I${COOKBOOK_SYSROOT}/include" -I${COOKBOOK_SYSROOT}/include/SDL2"
|
|
-DOPENGL_opengl_LIBRARY="/dev/null"
|
|
-DOPENGL_glx_LIBRARY="/dev/null"
|
|
-DUSE_DISCORD=OFF
|
|
-DUSE_FFMPEG=OFF
|
|
-DUSE_MINIUPNPC=OFF
|
|
-DUSE_SYSTEM_LIBSDL2=ON
|
|
-DUSING_EGL=OFF
|
|
-DUSING_FBDEV=OFF
|
|
-DUSING_GLES2=OFF
|
|
-DUSING_X11_VULKAN=OFF
|
|
-DUNIX=ON
|
|
)
|
|
cookbook_cmake
|
|
"""
|