aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcl.rb
diff options
context:
space:
mode:
authorSamuel John2013-03-31 20:51:43 +0200
committerSamuel John2013-03-31 20:54:25 +0200
commit9495b06ef3f35be8711902ce268ccfc92cdcb056 (patch)
tree8a155f95a7237eb8a424987ac7189a3accb50d2a /Library/Formula/mcl.rb
parent65fe8946bf4915c6b0d6c6e64dfc205f10c43f3c (diff)
downloadhomebrew-9495b06ef3f35be8711902ce268ccfc92cdcb056.tar.bz2
Moved to homebrew/science Octave, OpenCV, VTK, ...
Diffstat (limited to 'Library/Formula/mcl.rb')
-rw-r--r--Library/Formula/mcl.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/Library/Formula/mcl.rb b/Library/Formula/mcl.rb
deleted file mode 100644
index 5c56284cd..000000000
--- a/Library/Formula/mcl.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'formula'
-
-class Mcl < Formula
- homepage 'http://micans.org/mcl'
- url 'http://micans.org/mcl/src/mcl-12-135.tar.gz'
- version '12-135'
- sha1 '27e7bc08fe5f0d3361bbc98d343c9d045712e406'
-
- def install
- # Force the compiler to run in C89 mode because one of the source
- # files uses "restrict" as a variable name and this is a restricted
- # keyword in C99
- ENV.append_to_cflags '-std=c89'
-
- bin.mkpath
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--enable-blast"
- system "make install"
- end
-end