aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/r.rb
diff options
context:
space:
mode:
authorDaniel Tang2011-03-07 01:17:39 -0500
committerAdam Vandenberg2011-03-12 13:30:59 -0800
commit0fbb2fcbd791ff1ab37ecc22c3234bfe490e06de (patch)
tree0f13a8d9e5f7d87986c5b9645b55f994f591a731 /Library/Formula/r.rb
parentc57dc72c1ae835ca28cd75ac60686524f5e4ffe8 (diff)
downloadhomebrew-0fbb2fcbd791ff1ab37ecc22c3234bfe490e06de.tar.bz2
add caveat for installing R.framework
IDEs such as RStudio depend on R.framework being in a certain location, but the R formula currently doesn't install the framework anywhere. This just adds a friendly message to remind them that they may want to do so manually. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/r.rb')
-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 53be4841f..516ab1f25 100644
--- a/Library/Formula/r.rb
+++ b/Library/Formula/r.rb
@@ -26,4 +26,14 @@ 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.framework was installed to:
+ #{prefix}/R.framework
+
+ To use this Framework with IDEs such as RStudio, it must be linked
+ to the standard OS X location:
+ ln -s "#{prefix}/R.framework" /Library/Frameworks
+ EOS
+ end
end