fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
564 B
Ruby
20 lines
564 B
Ruby
require 'formula'
|
|
|
|
class Bash < Formula
|
|
homepage 'http://www.gnu.org/software/bash/'
|
|
url 'http://ftpmirror.gnu.org/bash/bash-4.2.tar.gz'
|
|
sha256 'a27a1179ec9c0830c65c6aa5d7dab60f7ce1a2a608618570f96bfa72e95ab3d8'
|
|
version '4.2.10'
|
|
|
|
depends_on 'readline'
|
|
|
|
def patches
|
|
patch_level = version.split('.').last.to_i
|
|
{'p0' => (1..patch_level).map { |i| "http://ftpmirror.gnu.org/bash/bash-4.2-patches/bash42-%03d" % i }}
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--with-installed-readline"
|
|
system "make install"
|
|
end
|
|
end
|