61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
405 B
Ruby
12 lines
405 B
Ruby
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
|