redox/recipes/wip/libs/archives/libzip/recipe.toml
2024-07-07 09:10:13 +00:00

24 lines
636 B
TOML

#TODO maybe incomplete script, see https://github.com/nih-at/libzip/blob/main/INSTALL.md
[source]
tar = "https://libzip.org/download/libzip-1.10.1.tar.gz"
[build]
template = "custom"
dependencies = [
"zlib",
]
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
"""