require 'buildsystems/autotools' class Bash < Autotools description 'The GNU Bourne Again SHell is a Bourne-compatible shell with useful csh and ksh features.' homepage 'https://www.gnu.org/software/bash/' version '5.3' license 'GPL-3' compatibility 'all' source_url 'https://git.savannah.gnu.org/git/bash.git' # Bash patch commits aren't tagged or anything, although this commit does correspond to the patchlevel we're shipping. git_hashtag "bash-#{version}" binary_compression 'tar.zst' binary_sha256({ aarch64: 'edf4806e698f0663dd885b7fe68028275258fd8599720f190b61cb142426b1e8', armv7l: 'edf4806e698f0663dd885b7fe68028275258fd8599720f190b61cb142426b1e8', i686: '3cb24f94dc23376310414a6c4605d1a509c19291abac7abd134e6022f78ecf2b', x86_64: 'df13b7b2370480f8bc89481562a8ec40ca809f01d76cd57ad1ac99e1d69d52b4' }) depends_on 'gcc_lib' # R depends_on 'glibc' # R depends_on 'ncurses' => :executable_only depends_on 'readline' => :executable_only autotools_configure_options '--with-curses \ --enable-extended-glob-default \ --enable-readline \ --without-bash-malloc \ --with-installed-readline' autotools_install_extras do FileUtils.ln_s "#{CREW_PREFIX}/bin/bash", "#{CREW_DEST_PREFIX}/bin/sh" end end