GNU BASH: 4.2.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
c2d555ec81
commit
cc06933311
1 changed files with 6 additions and 5 deletions
|
@ -1,18 +1,19 @@
|
|||
require 'formula'
|
||||
|
||||
class Bash <Formula
|
||||
url 'http://ftp.gnu.org/gnu/bash/bash-4.1.tar.gz'
|
||||
class Bash < Formula
|
||||
url 'http://ftp.gnu.org/gnu/bash/bash-4.2.tar.gz'
|
||||
homepage 'http://www.gnu.org/software/bash/'
|
||||
sha1 '3bd1ec9c66f3689f6b3495bdaaf9077b2e5dc150'
|
||||
version '4.1.9'
|
||||
sha1 '487840ab7134eb7901fbb2e49b0ee3d22de15cb8'
|
||||
version '4.2.7'
|
||||
|
||||
depends_on 'readline'
|
||||
|
||||
def patches
|
||||
patch_level = version.split('.').last.to_i
|
||||
{'p0' => (1..patch_level).map { |i| "http://ftp.gnu.org/gnu/bash/bash-4.1-patches/bash41-%03d" % i }}
|
||||
{'p0' => (1..patch_level).map { |i| "http://ftp.gnu.org/gnu/bash/bash-4.2-patches/bash42-%03d" % i }}
|
||||
end
|
||||
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
|
|
Loading…
Reference in a new issue