7f3175ed53
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
30 lines
941 B
Ruby
30 lines
941 B
Ruby
require 'formula'
|
|
|
|
class Readline < Formula
|
|
homepage 'http://tiswww.case.edu/php/chet/readline/rltop.html'
|
|
url 'ftp://ftp.cwru.edu/pub/bash/readline-6.2.tar.gz'
|
|
sha256 '79a696070a058c233c72dd6ac697021cc64abd5ed51e59db867d66d196a89381'
|
|
version '6.2.1'
|
|
|
|
keg_only <<-EOS
|
|
OS X provides the BSD libedit library, which shadows libreadline.
|
|
In order to prevent conflicts when programs look for libreadline we are
|
|
defaulting this GNU Readline installation to keg-only.
|
|
EOS
|
|
|
|
def patches
|
|
{:p0 => [
|
|
"ftp://ftp.cwru.edu/pub/bash/readline-6.2-patches/readline62-001",
|
|
]}
|
|
end
|
|
|
|
def install
|
|
# Always build universal, per https://github.com/mxcl/homebrew/issues/issue/899
|
|
ENV.universal_binary
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--infodir=#{info}",
|
|
"--enable-multibyte"
|
|
system "make install"
|
|
end
|
|
end
|