mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-29 08:08:41 +08:00
33 lines
809 B
TOML
33 lines
809 B
TOML
#TODO maybe incomplete script, see https://wiki.luxcorerender.org/Compiling_LuxCore
|
|
#TODO probably missing dependencies
|
|
[source]
|
|
git = "https://github.com/LuxCoreRender/LuxCore"
|
|
rev = "c8f10e9ddf5171fa705782a3da3f48123f96a4cb"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"bzip2",
|
|
"libtiff",
|
|
"libpng",
|
|
"gtk3",
|
|
"boost",
|
|
"mesa",
|
|
"openimageio",
|
|
"openexr",
|
|
]
|
|
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
|
|
"""
|