homebrew-cask/Casks/anaconda.rb

23 lines
581 B
Ruby
Raw Normal View History

2015-12-18 09:15:28 +08:00
cask 'anaconda' do
2016-04-01 20:39:59 +08:00
version '4.0.0'
sha256 '704a776c0cf3fcca6e0c5a1e6b6043728229cfac813bff28f003157771824036'
2015-11-16 01:04:24 +08:00
2015-12-05 07:21:53 +08:00
url "https://repo.continuum.io/archive/Anaconda3-#{version}-MacOSX-x86_64.sh"
name 'Continuum Analytics Anaconda'
2015-11-16 01:04:24 +08:00
homepage 'https://www.continuum.io/why-anaconda'
license :gratis
depends_on macos: '>= :lion'
container type: :naked
2015-11-16 01:04:24 +08:00
installer script: "Anaconda3-#{version}-MacOSX-x86_64.sh",
args: ['-b'],
sudo: false
2015-11-16 01:04:24 +08:00
uninstall delete: '~/anaconda3'
2015-11-16 01:04:24 +08:00
caveats do
2015-12-05 06:39:58 +08:00
path_environment_variable '~/anaconda3/bin'
2015-11-16 01:04:24 +08:00
end
end