blob: c0abe2edaa2e840042b39407644bd0ac1c6b0fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
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
  |