mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
47 lines
1.6 KiB
Ruby
47 lines
1.6 KiB
Ruby
cask "rancher" do
|
|
arch arm: "aarch64", intel: "x86_64"
|
|
|
|
version "1.11.1"
|
|
sha256 arm: "bc2af47a3bc1870cf7cfb7aa0d6b344893256bfdf2ee4b3eaf086af01aeb912a",
|
|
intel: "e4e5a0769c333a31ee14681e861205cfcff1baee32529d6a3181a032a40163ef"
|
|
|
|
url "https://github.com/rancher-sandbox/rancher-desktop/releases/download/v#{version}/Rancher.Desktop-#{version}.#{arch}.dmg",
|
|
verified: "github.com/rancher-sandbox/rancher-desktop/"
|
|
name "Rancher Desktop"
|
|
desc "Kubernetes and container management on the desktop"
|
|
homepage "https://rancherdesktop.io/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
conflicts_with cask: "docker"
|
|
|
|
app "Rancher Desktop.app"
|
|
|
|
uninstall delete: [
|
|
"/opt/rancher-desktop",
|
|
"/private/etc/sudoers.d/zzzzz-rancher-desktop-lima", # zzzzz is not a typo
|
|
"/private/var/run/docker.sock",
|
|
"/private/var/run/rancher-desktop-*",
|
|
],
|
|
quit: "io.rancherdesktop.app"
|
|
|
|
zap trash: [
|
|
"~/.kuberlr",
|
|
"~/.rd",
|
|
"~/Library/Application Support/Caches/rancher-desktop-updater",
|
|
"~/Library/Application Support/Rancher Desktop",
|
|
"~/Library/Application Support/rancher-desktop",
|
|
"~/Library/Caches/io.rancherdesktop.app*",
|
|
"~/Library/Caches/rancher-desktop",
|
|
"~/Library/Logs/rancher-desktop",
|
|
"~/Library/Preferences/ByHost/io.rancherdesktop.app*",
|
|
"~/Library/Preferences/io.rancherdesktop.app.plist",
|
|
"~/Library/Preferences/rancher-desktop",
|
|
"~/Library/Saved Application State/io.rancherdesktop.app.savedState",
|
|
]
|
|
end
|