homebrew-cask/Casks/rstudio.rb

31 lines
886 B
Ruby

cask 'rstudio' do
version '1.1.453'
sha256 '3aecb9164b3e07268d00a83ebf9e7f31515374d8d0107b904c6a8178c962b8d1'
# 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