homebrew-core/Formula/dialog.rb
Devin Weaver 1209c15daa Updates Formula dialog
dialog updated there version. MD5 and version fixed.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-29 12:34:04 -08:00

14 lines
407 B
Ruby

require 'formula'
class Dialog <Formula
url 'ftp://invisible-island.net/dialog/dialog.tar.gz'
homepage 'http://invisible-island.net/dialog/'
md5 '07d6ab77bd8c12c3def07ed72a706194'
version '1.1.20110118'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end