blob: d56f6298d7267e7c80dc6fe4ff77cddb0d60b731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Graphviz <Formula
url 'http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.24.0.tar.gz'
homepage 'http://graphviz.org/'
md5 '806a30dbc3f8deb219216f35be0e7a40'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-qartz", "--disable-python", "--disable-perl"
system "make install"
end
end
|