aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-26 15:22:02 -0700
committerAdam Vandenberg2013-06-26 15:22:02 -0700
commit0ce99a54f9f8a2e9820da1b9fd33cf6390f5b626 (patch)
tree79f286d7247341829971f75d89009afa490141fc /Library
parent8727de5d783d5efe09bccf57f25d60757307ac0b (diff)
downloadhomebrew-0ce99a54f9f8a2e9820da1b9fd33cf6390f5b626.tar.bz2
Redact igraph
This is already available in homebrew/science
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/igraph.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/igraph.rb b/Library/Formula/igraph.rb
deleted file mode 100644
index ee36c8b62..000000000
--- a/Library/Formula/igraph.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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