2009-10-20 18:18:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rlwrap < Formula
|
2010-06-01 00:41:17 +00:00
|
|
|
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz'
|
|
|
|
md5 '04cd6e2c257eb5a86b297f2ebf91dbbf'
|
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
|