mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
30 lines
771 B
Ruby
30 lines
771 B
Ruby
cask "termius-beta" do
|
|
arch = Hardware::CPU.intel? ? "mac-beta" : "mac-beta-arm64"
|
|
|
|
version "7.46.0"
|
|
sha256 :no_check
|
|
|
|
url "https://autoupdate.termius.com/#{arch}/Termius%20Beta.dmg"
|
|
name "Termius Beta"
|
|
desc "SSH client"
|
|
homepage "https://www.termius.com/beta-program"
|
|
|
|
livecheck do
|
|
url "https://autoupdate.termius.com/mac-beta/latest-mac.yml"
|
|
strategy :electron_builder
|
|
end
|
|
|
|
app "Termius Beta.app"
|
|
|
|
uninstall delete: [
|
|
"/Library/Preferences/com.termius-beta.mac.helper.plist",
|
|
"/Library/Preferences/com.termius-beta.mac.plist",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/.termius",
|
|
"~/Library/Application Support/Termius Beta",
|
|
"~/Library/Logs/Termius Beta",
|
|
"~/Library/Saved Application State/com.termius-beta.mac.savedState",
|
|
]
|
|
end
|