homebrew-cask/Casks/r.rb

53 lines
2.0 KiB
Ruby

cask 'r' do
if MacOS.release < :mavericks
version '3.2.1'
sha256 '88b9a20af00a916f3902ccac83098643b95a2801eb4775d38130b26871323a3f'
# rstudio.com is the official download host per the vendor homepage
url "https://cran.rstudio.com/bin/macosx/R-#{version}-snowleopard.pkg"
pkg "R-#{version}-snowleopard.pkg"
else
version '3.2.3'
sha256 '27068a2b50f19758c41908d6a959c927eb15a7d8736951d4cc61b4eb5d78c590'
# rstudio.com is the official download host per the vendor homepage
url "https://cran.rstudio.com/bin/macosx/R-#{version}.pkg"
pkg "R-#{version}.pkg"
end
name 'R'
homepage 'https://www.r-project.org/'
license :gpl
depends_on :macos => '>= :snow_leopard'
uninstall :pkgutil => [
# eg org.r-project.R.maverics.fw.pkg
# org.r-project.R.mavericks.GUI.pkg
'org\.r-project\.R\..*(fw|GUI)\.pkg',
# eg org.r-project.x86_64.tcltk.x11
'org.r-project\..*\.tcltk.x11',
],
:delete => [
# symlinks
'/usr/bin/R',
'/usr/bin/Rscript',
'/Library/Frameworks/R.Framework/Versions/Current',
# :pkgutil won't delete this dir if the fontconfig cache was written to at
# /Library/Frameworks/R.Framework/Versions/3.2/Resources/fontconfig/cache
'/Library/Frameworks/R.Framework/Versions/3.2',
]
zap :delete => [
'~/.R',
'~/.RData',
'~/.Rapp.history',
'~/.Rhistory',
'~/.Rprofile',
'~/Library/R',
'~/Library/Caches/org.R-project.R',
]
caveats do
files_in_usr_local
end
end