aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minc.rb
diff options
context:
space:
mode:
authorUlrik Landberg Stephansen2012-10-08 20:26:40 +0200
committerAdam Vandenberg2012-10-08 20:21:42 -0700
commit188cf1374bdb201cc819bdbab8b2e13ade1bfad3 (patch)
treee57e557e0625ebdfda5a59af65923bd4967ee352 /Library/Formula/minc.rb
parent70a5b0ee785eb9369fef458e53e7536ce7f82469 (diff)
downloadhomebrew-188cf1374bdb201cc819bdbab8b2e13ade1bfad3.tar.bz2
MINC 2.2.00
Closes #15356. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/minc.rb')
-rw-r--r--Library/Formula/minc.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/minc.rb b/Library/Formula/minc.rb
index 90591b7d2..7faa976c1 100644
--- a/Library/Formula/minc.rb
+++ b/Library/Formula/minc.rb
@@ -2,26 +2,26 @@ require 'formula'
class Minc < Formula
homepage 'http://en.wikibooks.org/wiki/MINC'
- url 'https://github.com/downloads/BIC-MNI/minc/minc-2.1.12.tar.gz'
- sha1 'fb44a74f16de293bec5e587584f2c43994729acc'
+ url 'https://github.com/BIC-MNI/minc/tarball/release-2.2.00'
+ sha1 '558300240a67b9f849a98622d0e8ec3aad76c6d1'
head 'https://github.com/BIC-MNI/minc.git'
depends_on 'netcdf'
+ depends_on 'hdf5'
depends_on :automake
depends_on :libtool
fails_with :clang do
# TODO This is an easy fix, someone send it upstream!
- build 318
+ build 421
cause "Throws 'non-void function 'miget_real_value_hyperslab' should return a value'"
end
def install
system "autoreconf", "--force", "--install"
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end