homebrew-core/Formula/igraph.rb
Tamas 23c6266fcb New formula: igraph
Formula for igraph 0.5.3

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-25 12:11:08 -07:00

15 lines
395 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
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end