homebrew-core/Formula/dialog.rb
Chris Kampmeier 5d93ceefe5 dialog 1.2-20121230
Closes Homebrew/homebrew#19045.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-08 14:45:35 -05:00

13 lines
402 B
Ruby

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