blob: 77bf9adc2ce665c6d28cdebe32332de48548d4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Rlwrap <Formula
url 'http://utopia.knoware.nl/~hlub/rlwrap/rlwrap-0.36.tar.gz'
md5 'f3d687658336789d5155322abcc84a7f'
homepage 'http://utopia.knoware.nl/~hlub/rlwrap/'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|