Skip to content

Commit

Permalink
graphviz - disable language bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv committed Aug 13, 2010
1 parent 2d441d2 commit 4885c89
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Library/Formula/graphviz.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ class Graphviz <Formula
depends_on 'pkg-config'

def install
ENV.x11 # Put freetype-config in path

ENV.x11
# Various language bindings fail with 32/64 issues.
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-quartz",
"--disable-java",
"--disable-ocaml",
"--disable-perl",
"--disable-php",
"--disable-perl"
"--disable-python",
"--disable-r",
"--disable-ruby",
"--disable-sharp",
"--disable-swig"
system "make install"
end
end

0 comments on commit 4885c89

Please sign in to comment.