mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
36 lines
1.0 KiB
Ruby
36 lines
1.0 KiB
Ruby
cask "virtualbuddy" do
|
|
version "1.3.2,107"
|
|
sha256 "793da34d91819bdbaded61f3b832d468b8cca91714132a9e89eb262e2d008412"
|
|
|
|
url "https://github.com/insidegui/VirtualBuddy/releases/download/#{version.csv.first}/VirtualBuddy_v#{version.csv.first}-#{version.csv.second}.dmg"
|
|
name "VirtualBuddy"
|
|
desc "Virtualization tool"
|
|
homepage "https://github.com/insidegui/VirtualBuddy"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^VirtualBuddy[._-]v?(\d+(?:[.-]\d+)+)\.dmg$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["assets"]&.map do |asset|
|
|
match = asset["name"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
match[1].tr("-", ",")
|
|
end
|
|
end
|
|
end
|
|
|
|
conflicts_with cask: "homebrew/cask-versions/virtualbuddy-beta"
|
|
depends_on arch: :arm64
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "VirtualBuddy.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/VirtualBuddy",
|
|
"~/Library/Caches/codes.rambo.VirtualBuddy",
|
|
"~/Library/HTTPStorages/codes.rambo.VirtualBuddy",
|
|
"~/Library/Preferences/codes.rambo.VirtualBuddy.plist",
|
|
]
|
|
end
|