aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minc.rb
diff options
context:
space:
mode:
authorJack Nagel2013-09-24 17:30:53 -0500
committerJack Nagel2013-09-24 17:30:53 -0500
commite2b31e734e1221e19cf2fd66dc0098c18bfa9bf3 (patch)
treed77635ab2b5130e5337d1509549845667ad19d09 /Library/Formula/minc.rb
parenta88da279fbc96f925620ac6d45ec7ab1d7d4a1fb (diff)
downloadhomebrew-e2b31e734e1221e19cf2fd66dc0098c18bfa9bf3.tar.bz2
Remove formulae moved to homebrew-science
Diffstat (limited to 'Library/Formula/minc.rb')
-rw-r--r--Library/Formula/minc.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/Library/Formula/minc.rb b/Library/Formula/minc.rb
deleted file mode 100644
index 2d0140f26..000000000
--- a/Library/Formula/minc.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'formula'
-
-# 2.2.20 does not build on OS X. See:
-# https://github.com/BIC-MNI/minc/pull/16
-# https://github.com/mxcl/homebrew/issues/22152
-class Minc < Formula
- homepage 'http://en.wikibooks.org/wiki/MINC'
- url 'https://github.com/BIC-MNI/minc/archive/minc-2-1-13.tar.gz'
- version '2.1.13'
- sha1 '62eeeab62bb5c977e11166d4e43ba384fd029fd1'
-
- head 'https://github.com/BIC-MNI/minc.git'
-
- depends_on :automake
- depends_on :libtool
-
- depends_on 'netcdf'
- depends_on 'hdf5'
-
- fails_with :clang do
- # TODO This is an easy fix, someone send it upstream!
- build 425
- cause "Throws 'non-void function 'miget_real_value_hyperslab' should return a value'"
- end
-
- def install
- system "autoreconf", "--force", "--install"
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
- system "make install"
- end
-end