aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorThierry Moisan2013-05-14 17:02:16 -0400
committerAdam Vandenberg2013-06-25 12:52:02 -0700
commit67f7b138b97029786a4870e9d302daaefd9125ce (patch)
tree6160d4bdfaba70517ad1aaa585e491602d0cc7f0 /Library
parent6ce207d3f2841f0d313095b8f8931a173c2a9381 (diff)
downloadhomebrew-67f7b138b97029786a4870e9d302daaefd9125ce.tar.bz2
igraph 0.6.5
Closes #19818. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/igraph.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/igraph.rb b/Library/Formula/igraph.rb
new file mode 100644
index 000000000..ee36c8b62
--- /dev/null
+++ b/Library/Formula/igraph.rb
@@ -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