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>
This commit is contained in:
Daniel Tang 2011-03-07 01:17:39 -05:00 committed by Adam Vandenberg
parent 7c0727b6b4
commit 250cbf4ec6

View file

@ -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