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:
parent
7c0727b6b4
commit
250cbf4ec6
1 changed files with 10 additions and 0 deletions
10
Formula/r.rb
10
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
|
||||
|
|
Loading…
Reference in a new issue