homebrew-cask/Casks/p/powershell.rb

36 lines
1013 B
Ruby

cask "powershell" do
arch arm: "arm64", intel: "x64"
version "7.4.1"
sha256 arm: "fa6c4499fb36a851f72f6136ce2d6804dc5c50e5bdedbe0207b6fc60c68712f4",
intel: "6279b3e81406fd7b6124ff5afae211de1e6cce46568749874e4ff2bb64b78edc"
url "https://github.com/PowerShell/PowerShell/releases/download/v#{version}/powershell-#{version}-osx-#{arch}.pkg"
name "PowerShell"
desc "Command-line shell and scripting language"
homepage "https://github.com/PowerShell/PowerShell"
livecheck do
url :url
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
depends_on formula: "openssl"
depends_on macos: ">= :mojave"
pkg "powershell-#{version}-osx-#{arch}.pkg"
uninstall pkgutil: "com.microsoft.powershell"
zap trash: [
"~/.cache/powershell",
"~/.config/powershell",
"~/.local/share/powershell",
]
caveats <<~EOS
To use Homebrew in PowerShell, set:
Add-Content -Path $PROFILE.CurrentUserAllHosts -Value '$(#{HOMEBREW_PREFIX}/bin/brew shellenv) | Invoke-Expression'
EOS
end