homebrew-core/Formula/rlwrap.rb

15 lines
384 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Rlwrap < Formula
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz'
sha1 'c8fc5e7798a7c618a22583c56fa38d344700cc2f'
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