mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
666 B
Ruby
31 lines
666 B
Ruby
cask "termius" do
|
|
arch arm: "-arm64"
|
|
|
|
version "8.8.2"
|
|
sha256 :no_check
|
|
|
|
url "https://autoupdate.termius.com/mac#{arch}/Termius.dmg"
|
|
name "Termius"
|
|
desc "SSH client"
|
|
homepage "https://www.termius.com/"
|
|
|
|
livecheck do
|
|
url "https://autoupdate.termius.com/mac/latest-mac.yml"
|
|
strategy :electron_builder
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :el_capitan"
|
|
|
|
app "Termius.app"
|
|
|
|
uninstall delete: "/Library/Preferences/com.termius-dmg.mac.plist"
|
|
|
|
zap trash: [
|
|
"~/.termius",
|
|
"~/Library/Application Support/Termius",
|
|
"~/Library/Logs/Termius",
|
|
"~/Library/Saved Application State/com.termius-dmg.mac.savedState",
|
|
]
|
|
end
|