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.0"
|
|
sha256 "ac874482c8c583c99a82b3960ad077d77ff82e273dfacd30120cc5b9b00b1f25"
|
|
|
|
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
|