mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44:17 +08:00
27 lines
716 B
TOML
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
|
|
"""
|