2009-10-20 18:18:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Rlwrap <Formula
|
2010-01-31 22:22:21 +00:00
|
|
|
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.36.tar.gz'
|
|
|
|
md5 'f3d687658336789d5155322abcc84a7f'
|
2009-12-18 01:28:48 +00:00
|
|
|
homepage 'http://utopia.knoware.nl/~hlub/rlwrap/'
|
2009-10-20 18:18:52 +00:00
|
|
|
|
|
|
|
depends_on 'readline'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|