homebrew-cask/Casks/dotnet.rb

19 lines
580 B
Ruby
Raw Normal View History

2016-06-29 01:48:04 +08:00
cask 'dotnet' do
2018-07-11 17:09:12 +08:00
version '2.1.2'
sha256 '2b47125c50b32f8ce30fd15eaf6d8e87b5b30ded0ce3735398ebd33b20a79913'
2016-06-29 01:48:04 +08:00
2018-07-11 17:09:12 +08:00
url "https://download.microsoft.com/download/1/f/7/1f7755c5-934d-4638-b89f-1f4ffa5afe89/dotnet-runtime-#{version}-osx-x64.pkg"
appcast 'https://www.microsoft.com/net/download/macos'
name '.Net Core Runtime'
2016-06-29 01:48:04 +08:00
homepage 'https://www.microsoft.com/net/core#macos'
depends_on macos: '>= :sierra'
2016-06-29 01:48:04 +08:00
pkg "dotnet-runtime-#{version}-osx-x64.pkg"
2016-06-29 01:48:04 +08:00
uninstall pkgutil: 'com.microsoft.dotnet.*',
delete: '/etc/paths.d/dotnet'
2017-06-21 09:47:44 +08:00
zap trash: '~/.nuget'
2016-06-29 01:48:04 +08:00
end