New formula: igraph
Formula for igraph 0.5.3 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
6bc8762084
commit
23c6266fcb
1 changed files with 15 additions and 0 deletions
15
Formula/igraph.rb
Normal file
15
Formula/igraph.rb
Normal 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
|
Loading…
Reference in a new issue