aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-18 11:22:26 -0700
committerAdam Vandenberg2010-07-18 11:22:26 -0700
commit8d0a30cfdcbe8b666b30e9e18522e8d15a614cef (patch)
treed62af9c37236344fe3ce4c58f506e8cd6136e745 /Library/Formula
parent5ae6afe96ccc95a3363363f5e370818bad8b8556 (diff)
downloadhomebrew-8d0a30cfdcbe8b666b30e9e18522e8d15a614cef.tar.bz2
R - add gfortran notes to caveats
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/r.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/Formula/r.rb b/Library/Formula/r.rb
index 50910141a..a292099c5 100644
--- a/Library/Formula/r.rb
+++ b/Library/Formula/r.rb
@@ -20,6 +20,8 @@ class R <Formula
ENV.j1 # Serialized installs, please
system "make install"
+ # Link binaries and manpages from the Framework
+ # into the normal locations
bin.mkpath
man1.mkpath
@@ -28,4 +30,12 @@ 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