aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2010-12-23 10:48:59 -0800
committerAdam Vandenberg2010-12-23 11:18:19 -0800
commitefe6d430e6e5f04245eb11f40bb0455e6a4eaf28 (patch)
treec1712b18d2c5ab6044bd6d132a92e7650a04b263 /Library
parent45e09d78fb93fa4da80dce0b27714d71c711719d (diff)
downloadhomebrew-efe6d430e6e5f04245eb11f40bb0455e6a4eaf28.tar.bz2
Bumped R version to 2.12.1
Also removed the caveat explaining to the user that gfortran is required for installation as this exact same information is displayed if `which gfortran` returns empty-handed and is irrelevant if the install succeeded. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/r.rb12
1 files changed, 2 insertions, 10 deletions
diff --git a/Library/Formula/r.rb b/Library/Formula/r.rb
index 43da9507b..a6fbc7c91 100644
--- a/Library/Formula/r.rb
+++ b/Library/Formula/r.rb
@@ -1,9 +1,9 @@
require 'formula'
class R <Formula
- url 'http://cran.r-project.org/src/base/R-2/R-2.12.0.tar.gz'
+ url 'http://cran.r-project.org/src/base/R-2/R-2.12.1.tar.gz'
homepage 'http://www.R-project.org/'
- md5 'aa003654d238d70bf5bc7433b8257aac'
+ md5 '078e8d1179fc9a762e326e6da2725468'
def install
unless `/usr/bin/which gfortran`.chomp.size > 0
@@ -31,12 +31,4 @@ class R <Formula
ln_s prefix+"R.framework/Resources/man1/R.1", man1
ln_s prefix+"R.framework/Resources/man1/Rscript.1", man1
end
-
- def caveats; <<-EOS.undent
- R requires a fortran compiler to install.
- You can install gfortran using Homebrew:
- brew install gfortran
-
- EOS
- end
end