mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
28 lines
856 B
Ruby
28 lines
856 B
Ruby
cask 'powershell-preview' do
|
|
version '6.2.0-preview.2'
|
|
sha256 'a017e02f0b69fad35cf61b96f1ddbfc587909ebc93f61f1bf7aae574542b33cc'
|
|
|
|
url "https://github.com/PowerShell/PowerShell/releases/download/v#{version}/powershell-#{version}-osx-x64.pkg"
|
|
appcast 'https://github.com/PowerShell/PowerShell/releases.atom'
|
|
name 'PowerShell'
|
|
homepage 'https://github.com/PowerShell/PowerShell'
|
|
|
|
depends_on formula: 'openssl'
|
|
depends_on macos: '>= :sierra'
|
|
|
|
pkg "powershell-#{version}-osx-x64.pkg"
|
|
|
|
uninstall pkgutil: 'com.microsoft.powershell-preview'
|
|
|
|
zap trash: [
|
|
'~/.cache/powershell',
|
|
'~/.config/PowerShell',
|
|
'~/.local/share/powershell',
|
|
],
|
|
rmdir: [
|
|
'~/.cache',
|
|
'~/.config',
|
|
'~/.local/share',
|
|
'~/.local',
|
|
]
|
|
end
|