mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 06:14:18 +08:00
25 lines
485 B
TOML
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
|
|
"""
|