blob: 31a98e829eae74ae63f0d181b8123030fef3670a (
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 '34d01aaacbb2932b77774e6c1eec8d2a'
version '1.1.20110707'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end
|