mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
632 B
Ruby
26 lines
632 B
Ruby
cask "aptakube" do
|
|
version "1.6.2"
|
|
sha256 "cb41813caeadf5ad49e6ba1532d6852f1aabe39aaa1254e4984794199edb9e80"
|
|
|
|
url "https://releases.aptakube.com/Aptakube_#{version}_universal.dmg"
|
|
name "Aptakube"
|
|
desc "Kubernetes desktop client"
|
|
homepage "https://aptakube.com/"
|
|
|
|
livecheck do
|
|
url "https://aptakube.com/api/latest"
|
|
regex(/"version": "(\d+(?:\.\d+)+)"/i)
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Aptakube.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.aptakube.Aptakube",
|
|
"~/Library/Caches/com.aptakube.Aptakube",
|
|
"~/Library/Logs/com.aptakube.Aptakube",
|
|
]
|
|
end
|