homebrew-core/Formula/dialog.rb
William Riley-Land 923cce5678 Updates dialog to latest version
Updates the version number to the latest (1.1-20110302) and updates the md5 of the archive

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-26 19:18:12 -07:00

14 lines
408 B
Ruby

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