homebrew-core/Formula/rlwrap.rb

15 lines
374 B
Ruby
Raw Normal View History

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/'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end