homebrew-core/Formula/igraph.rb
Douglas Creager 8835fffce9 Fixing several formulae that fail with LLVM
Specifically: emacs, glib, igraph, and zeromq
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-18 17:14:14 -07:00

17 lines
444 B
Ruby

require 'formula'
class Igraph <Formula
url 'http://switch.dl.sourceforge.net/sourceforge/igraph/igraph-0.5.3.tar.gz'
homepage 'http://igraph.sourceforge.net'
md5 '0b5437a387a1c91985b99656f877edcd'
depends_on 'glpk'
depends_on 'gmp'
def install
fails_with_llvm "Segfault while compiling."
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end