25 lines
754 B
Ruby
25 lines
754 B
Ruby
cask "termix" do
|
|
version "1.10.0"
|
|
sha256 "327c5026006c949f992447835aa6754113f731065b410bedbfa5da5af7cb2386"
|
|
|
|
url "https://github.com/Termix-SSH/Termix/releases/download/release-#{version}-tag/termix_macos_universal_dmg.dmg"
|
|
name "Termix"
|
|
desc "Web-based server management platform with SSH terminal, tunneling, and file editing"
|
|
homepage "https://github.com/Termix-SSH/Termix"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Termix.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/termix",
|
|
"~/Library/Caches/com.karmaa.termix",
|
|
"~/Library/Caches/com.karmaa.termix.ShipIt",
|
|
"~/Library/Preferences/com.karmaa.termix.plist",
|
|
"~/Library/Saved Application State/com.karmaa.termix.savedState",
|
|
]
|
|
end
|