New formula: igraph

Formula for igraph 0.5.3

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Tamas 2010-07-23 14:53:01 +01:00 committed by Adam Vandenberg
parent 6bc8762084
commit 23c6266fcb

15
Formula/igraph.rb Normal file
View file

@ -0,0 +1,15 @@
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