aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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