diff options
| author | Tamas Nepusz | 2012-06-18 15:58:59 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-18 08:01:15 -0700 |
| commit | 4be0e60b39ae7c29b3c47e57d5c64a1ad8d34cc4 (patch) | |
| tree | b44de3d9d7a0ad9b9ceabf104c734873099a12cc /Library/Formula | |
| parent | b597ac01c6084b82fcf1a6b0594d87fc89908a92 (diff) | |
| download | homebrew-4be0e60b39ae7c29b3c47e57d5c64a1ad8d34cc4.tar.bz2 | |
igraph 0.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/igraph.rb | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Library/Formula/igraph.rb b/Library/Formula/igraph.rb index e156cb292..16b854d5c 100644 --- a/Library/Formula/igraph.rb +++ b/Library/Formula/igraph.rb @@ -2,8 +2,8 @@ require 'formula' class Igraph < Formula homepage 'http://igraph.sourceforge.net' - url 'http://downloads.sourceforge.net/sourceforge/igraph/igraph-0.5.4.tar.gz' - md5 '47963ece64fe5f793e154e238bc6c3c3' + 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? @@ -12,16 +12,11 @@ class Igraph < Formula [["--universal", "Build a universal binary."]] end - # Fix for llvm-gcc. This is already merged in upstream and - # will not be required for igraph >= 0.5.5 - def patches - "https://raw.github.com/gist/1209951/e337ad8c2d8cb613872e5381a99f411d314576a1/igraph-0.5.4_llvm-gcc.patch" - end - def install ENV.universal_binary if ARGV.build_universal? - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", + "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end |
