blob: ad069ac4559e7316d3c0a019c293289615cc2338 (
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.37.tar.gz'
md5 '04cd6e2c257eb5a86b297f2ebf91dbbf'
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
|