aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/igraph.rb
blob: ee36c8b62c17cbeb2684592094a6c2a5c54962a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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