redox/recipes/wip/graphics/other/luxcorerender/recipe.toml
2024-07-02 06:08:02 +00:00

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
"""