blob: c5c4145894dfd667f4de63eb058f186f220cebad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Rlwrap < Formula
  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
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |