mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
931 B
Ruby
31 lines
931 B
Ruby
cask "whisky" do
|
|
version "2.2.1"
|
|
sha256 "ba819ff9424648162345b9410ab01b19b2ef58cedb5abfd8d28d2c83c169a65a"
|
|
|
|
url "https://github.com/IsaacMarovitz/Whisky/releases/download/v#{version}/Whisky.zip"
|
|
name "Whisky"
|
|
desc "Wine wrapper built with SwiftUI"
|
|
homepage "https://github.com/IsaacMarovitz/Whisky"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sonoma"
|
|
depends_on arch: :arm64
|
|
|
|
app "Whisky.app"
|
|
binary "#{appdir}/Whisky.app/Contents/Resources/WhiskyCmd", target: "whisky"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.isaacmarovitz.Whisky",
|
|
"~/Library/Containers/com.isaacmarovitz.Whisky",
|
|
"~/Library/HTTPStorages/com.isaacmarovitz.Whisky",
|
|
"~/Library/Logs/com.isaacmarovitz.Whisky",
|
|
"~/Library/Preferences/com.isaacmarovitz.Whisky.plist",
|
|
"~/Library/Saved Application State/com.isaacmarovitz.Whisky.savedState",
|
|
]
|
|
end
|