diff --git a/recipes/bash/recipe.toml b/recipes/bash/recipe.toml new file mode 100644 index 0000000000000000000000000000000000000000..b3e0ed2e4755be47b606e34d54e2af2f335cb086 --- /dev/null +++ b/recipes/bash/recipe.toml @@ -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 +"""