mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 18:48:43 +08:00
23 lines
506 B
TOML
23 lines
506 B
TOML
[source]
|
|
tar = "https://github.com/tukaani-project/xz/releases/download/v5.2.13/xz-5.2.13.tar.gz"
|
|
blake3 = "edc6350542e8cb7188a878135e5b9bd592d687e5b47451ca1c89d51cc4bc6b53"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
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
|
|
"""
|