Graphviz formula

Disabling python becuase using easy_install is easier, and it was kicking
errors before I disabled it.
This commit is contained in:
Tom von Schwerdtner 2009-09-27 02:03:35 -04:00 committed by Max Howell
parent 65b311ea94
commit b8f509f85a

12
Formula/graphviz.rb Normal file
View file

@ -0,0 +1,12 @@
require 'brewkit'
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"
system "make install"
end
end