16 lines
439 B
Ruby
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
|