redox/recipes/wip/libs/raylib/recipe.toml
2024-03-12 20:32:51 +00:00

27 lines
716 B
TOML

#TODO port to Orbital
#TODO probably wrong script, see https://github.com/raysan5/raylib/wiki/Working-on-GNU-Linux
[source]
git = "https://github.com/raysan5/raylib"
rev = "ae50bfa2cc569c0f8d5bc4315d39db64005b1b08"
[build]
template = "custom"
dependencies = [
"mesa",
"libxkbcommon",
]
script = """
COOKBOOK_CONFIGURE="cmake"
COOKBOOK_CONFIGURE_FLAGS=(
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CROSSCOMPILING=True
-DCMAKE_EXE_LINKER_FLAGS="-static"
-DCMAKE_INSTALL_PREFIX="/"
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
-DCMAKE_SYSTEM_NAME=Generic
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
-DCMAKE_VERBOSE_MAKEFILE=On
"${COOKBOOK_SOURCE}"
)
cookbook_configure
"""