redox/recipes/tools/xz/recipe.toml
2024-10-16 21:20:38 +03:00

25 lines
485 B
TOML

[source]
git = "https://github.com/tukaani-project/xz"
# v5.2.5
rev = "2327a461e1afce862c22269b80d3517801103c1b"
[build]
template = "custom"
script = """
(cd ${COOKBOOK_SOURCE} && ./autogen.sh)
export CFLAGS="-static"
COOKBOOK_CONFIGURE_FLAGS=(
--host="${GNU_TARGET}"
--prefix=""
--disable-lzmadec
--disable-lzmainfo
--disable-xz
--disable-xzdec
--enable-shared=no
--enable-static=yes
--enable-threads=no
--with-pic=no
)
cookbook_configure
"""