redox/recipes/wip/fuse/dwarfs/recipe.toml
2024-02-13 12:28:54 +00:00

33 lines
835 B
TOML

#TODO probably wrong script, see https://github.com/mhx/dwarfs#building
#TODO missing dependencies, see https://github.com/mhx/dwarfs#dependencies
[source]
tar = "https://github.com/mhx/dwarfs/releases/download/v0.7.2/dwarfs-0.7.2.tar.xz"
[build]
template = "custom"
dependencies = [
"libfuse3",
"boost",
"brotli",
"libevent",
"openssl1",
"lz4",
"xz",
"libunwind",
"libfmt",
]
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
"""