homebrew-cask/Casks/rstudio.rb

31 lines
886 B
Ruby

cask 'rstudio' do
version '1.1.447'
sha256 '8bc05fc136ac981236ebdd933f1134901c4735c9e4f943818645d79fdb503e2d'
# rstudio.org was verified as official when first introduced to the cask
url "https://download1.rstudio.org/RStudio-#{version}.dmg"
name 'RStudio'
homepage 'https://www.rstudio.com/'
app 'RStudio.app'
zap trash: '~/.rstudio-desktop'
caveats <<~EOS
#{token} depends on R.
There are different ways to satisfy that dependency. RStudio recommends installing R from The R Project, which is required to install binary R packages, without needing to compile packages from source.
https://support.rstudio.com/hc/en-us/articles/217799238
To install the R Project package run:
brew cask install r-app
Alternative ways to satisfy the dependency are:
brew install r
This requires compiling R packages from source.
EOS
end