homebrew-core/Formula/rlwrap.rb
Adam Vandenberg 4fc6db68d2 rlwrap 0.41
2014-05-18 15:52:04 -07:00

16 lines
439 B
Ruby

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