homebrew-core/Formula/readline.rb
Max Howell 7754e27f1f Fix readline on Snow Leopard
The patches broke the build.
2009-09-22 19:56:23 +01:00

27 lines
762 B
Ruby

require 'brewkit'
class Readline <Formula
@url='ftp://ftp.cwru.edu/pub/bash/readline-6.0.tar.gz'
@homepage='http://tiswww.case.edu/php/chet/readline/rltop.html'
@md5='b7f65a48add447693be6e86f04a63019'
def keg_only? ; <<-EOS
OS X provides the BSD Readline library. In order to prevent conflicts when
programs look for libreadline we are defaulting this GNU Readline installation
to keg-only.
EOS
end
def patches
if MACOS_VERSION == 10.5
(1..4).collect {|n| "ftp://ftp.gnu.org/gnu/readline/readline-6.0-patches/readline60-%03d"%n}
end
end
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make install"
end
end