homebrew-core/Formula/rlwrap.rb

16 lines
410 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Rlwrap < Formula
2013-01-28 06:06:14 +00:00
homepage 'http://utopia.knoware.nl/~hlub/rlwrap/'
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.37.tar.gz'
sha1 'c8fc5e7798a7c618a22583c56fa38d344700cc2f'
depends_on 'readline'
def install
2013-01-28 06:06:14 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end