Add bash recipe.toml

This commit is contained in:
Jeremy Soller 2020-07-14 20:39:51 -06:00
parent f6baea67ce
commit 85bf534f77
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

21
recipes/bash/recipe.toml Normal file
View File

@ -0,0 +1,21 @@
[source]
tar = "http://ftp.gnu.org/gnu/bash/bash-4.4.tar.gz"
dependencies = [
"gettext"
]
patches = [
"redox.patch"
]
script = """
wget -O support/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
"""
[build]
template = "custom"
script = """
COOKBOOK_CONFIGURE_FLAGS+=(
--disable-readline
bash_cv_getenv_redef=no
)
cookbook_configure
"""