aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dialog.rb
blob: 01a0f89d0a4ba67d8152d9ef0cc33b1d22f2e558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Dialog < Formula
  url 'ftp://invisible-island.net/dialog/dialog.tar.gz'
  homepage 'http://invisible-island.net/dialog/'
  md5 '15dd2ce9f537c0400f600d1a383aa0a3'
  version '1.1.20111020'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end