aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rlwrap.rb
blob: d3a82521013b400b6977a2acdb59fa30c7a7c0ef (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.33.tar.gz'
  md5 '831f375ca6c9d7ac77bebff616bd03a6'
  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