homebrew-core/Formula/rlwrap.rb
Aku Kotkavuo 5393f8eb9c Update formula rlwrap to 0.37
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-31 17:48:39 -07:00

14 lines
374 B
Ruby

require 'formula'
class Rlwrap <Formula
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz'
md5 '04cd6e2c257eb5a86b297f2ebf91dbbf'
homepage 'http://utopia.knoware.nl/~hlub/rlwrap/'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end