mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
cask "anka-virtualization" do
|
|
version "3.3.7.173"
|
|
sha256 "0505bbfe492393ee7f358f5e48dbe14619bd22114a80891bf178d0a3a6b7e7cb"
|
|
|
|
url "https://downloads.veertu.com/anka/Anka-#{version}.pkg"
|
|
name "Anka Virtualization"
|
|
desc "CLI tool for managing and creating virtual machines"
|
|
homepage "https://veertu.com/"
|
|
|
|
livecheck do
|
|
url "https://veertu.com/downloads/anka-virtualization-latest"
|
|
regex(/Anka[._-]?v?(\d+(?:\.\d+)+)\.pkg/i)
|
|
strategy :header_match
|
|
end
|
|
|
|
depends_on macos: ">= :monterey"
|
|
|
|
pkg "Anka-#{version}.pkg"
|
|
|
|
uninstall launchctl: [
|
|
"com.veertu.anka.ankakbd",
|
|
"com.veertu.anka.ankanetd",
|
|
"com.veertu.anka.lupd",
|
|
"com.veertu.nlimit",
|
|
"com.veertu.vlaunch",
|
|
],
|
|
script: {
|
|
executable: "/Library/Application Support/Veertu/Anka/tools/uninstall.sh",
|
|
args: ["-f"],
|
|
sudo: true,
|
|
}
|
|
|
|
zap trash: [
|
|
"/Library/Application Support/Veertu/Anka",
|
|
"~/.anka",
|
|
"~/Library/Application Support/CrashReporter/ankahv_*.plist",
|
|
"~/Library/Application Support/Veertu/Anka",
|
|
"~/Library/Logs/Anka",
|
|
"~/Library/Preferences/com.veertu.ankaview.plist",
|
|
],
|
|
rmdir: [
|
|
"/Library/Application Support/Veertu",
|
|
"~/Library/Application Support/Veertu",
|
|
]
|
|
|
|
caveats do
|
|
license "https://veertu.com/terms-and-conditions/"
|
|
end
|
|
end
|