graphviz: partially use options dsl

master
Adam Vandenberg 2012-08-09 22:03:53 -07:00
parent f10f5a24f0
commit 4fcd5679df
1 changed files with 4 additions and 3 deletions

View File

@ -9,6 +9,8 @@ class Graphviz < Formula
url 'http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.28.0.tar.gz'
sha1 '4725d88a13e071ee22e632de551d4a55ca08ee7d'
option :universal
depends_on :libpng
depends_on 'pkg-config' => :build
@ -22,8 +24,7 @@ class Graphviz < Formula
def options
[
["--with-pangocairo", "Build with Pango/Cairo for alternate PDF output"],
["--with[out]-bindings", "Build Perl/Python/Ruby/etc. bindings (default on Lion; may not work on earlier systems)"],
['--universal', 'Build Graphviz with universal binaries and libraries']
["--with[out]-bindings", "Build Perl/Python/Ruby/etc. bindings (default on Lion; may not work on earlier systems)"]
]
end
@ -33,7 +34,7 @@ class Graphviz < Formula
end
def install
ENV.universal_binary if ARGV.build_universal?
ENV.universal_binary if build.universal?
args = ["--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",