homebrew-core/Formula/bash.rb

30 lines
959 B
Ruby
Raw Normal View History

require 'formula'
2009-09-18 21:06:03 +00:00
class Bash < Formula
homepage 'http://www.gnu.org/software/bash/'
url 'http://ftpmirror.gnu.org/bash/bash-4.2.tar.gz'
mirror 'http://ftp.gnu.org/gnu/bash/bash-4.2.tar.gz'
sha256 'a27a1179ec9c0830c65c6aa5d7dab60f7ce1a2a608618570f96bfa72e95ab3d8'
2013-03-09 01:45:51 +00:00
version '4.2.45'
2009-09-18 21:06:03 +00:00
depends_on 'readline'
2009-09-18 21:06:03 +00:00
# Vendor the patches. The mirrors are unreliable for getting the patches,
# and the more patches there are, the more unreliable they get. Upstream
# patches can be found in: http://ftpmirror.gnu.org/bash/bash-4.2-patches
def patches
2013-03-09 01:45:51 +00:00
{ :p0 => "https://gist.github.com/jacknagel/4008180/raw/1509a257060aa94e5349250306cce9eb884c837d/bash-4.2-001-045.patch" }
end
def install
system "./configure", "--prefix=#{prefix}", "--with-installed-readline"
2009-09-18 21:06:03 +00:00
system "make install"
end
def caveats; <<-EOS.undent
In order to use this build of bash as your login shell,
it must be added to /etc/shells.
EOS
end
2009-09-18 21:06:03 +00:00
end