6137978f96
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
23 lines
656 B
Ruby
23 lines
656 B
Ruby
require 'formula'
|
|
|
|
class Igraph < Formula
|
|
homepage 'http://igraph.sourceforge.net'
|
|
url 'http://downloads.sourceforge.net/sourceforge/igraph/igraph-0.6.tar.gz'
|
|
sha1 'd9a6e7c0462b5948ebfbf9f1d2685141f5867fe3'
|
|
|
|
# GMP is optional, and doesn't have a universal build
|
|
depends_on 'gmp' => :optional unless ARGV.build_universal?
|
|
|
|
def options
|
|
[["--universal", "Build a universal binary."]]
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if ARGV.build_universal?
|
|
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|