mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
27 lines
669 B
TOML
27 lines
669 B
TOML
[source]
|
|
tar = "https://ftp.gnu.org/gnu/patch/patch-2.7.6.tar.xz"
|
|
blake3 = "d46d14c12aa4ea51e356bf92091c368fd871e1d770b94bc29027886737aecd5f"
|
|
patches = [
|
|
"01_no_rlimit.patch",
|
|
"02_no_chown.patch",
|
|
]
|
|
script = """
|
|
wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
|
|
autoreconf
|
|
"""
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
COOKBOOK_CONFIGURE="${COOKBOOK_SOURCE}/configure"
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--host="${TARGET}"
|
|
--prefix="/"
|
|
--build="$(gcc -dumpmachine)"
|
|
)
|
|
|
|
cookbook_configure
|
|
|
|
${TARGET}-strip "${COOKBOOK_STAGE}/bin/"*
|
|
rm -rf "${COOKBOOK_STAGE}/share" "${COOKBOOK_STAGE}/lib"
|
|
""" |