igraph 0.6.5

Closes Homebrew/homebrew#19818.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Thierry Moisan 2013-05-14 17:02:16 -04:00 committed by Adam Vandenberg
parent 453cee14ba
commit bf632342db

16
Formula/igraph.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Igraph < Formula
homepage 'http://igraph.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/igraph/C%20library/0.6.5/igraph-0.6.5.tar.gz'
sha1 'f1605c5592e8bf3c97473f7781e77b6608448f78'
depends_on 'gmp' => :build
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make", "install"
end
end