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

class Dialog < Formula
  homepage 'http://invisible-island.net/dialog/'
  url 'ftp://invisible-island.net/dialog/dialog-1.2-20121230.tgz'
  sha1 'f6ba16481e04c707c7cbfc3c3c1340040bdb0aa3'

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