redox/recipes/bash/recipe.toml
2022-08-04 09:10:20 -06:00

23 lines
454 B
TOML

[source]
tar = "http://ftp.gnu.org/gnu/bash/bash-4.4.tar.gz"
patches = [
"redox.patch"
]
script = """
wget -O support/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
"""
[build]
template = "custom"
dependencies = [
"gettext",
"readline",
]
script = """
COOKBOOK_CONFIGURE_FLAGS+=(
bash_cv_getenv_redef=no
)
COOKBOOK_MAKE_JOBS=1 # workaround for parallel make bugs
cookbook_configure
"""