Create whisky.rb

This commit is contained in:
Isaac Marovitz 2023-06-19 05:12:19 -04:00 committed by GitHub
parent edf480502d
commit cc4ac5c074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
Casks/whisky.rb Normal file
View File

@ -0,0 +1,28 @@
cask "whisky" do
# Pre-release is currently the only release avaliable
version "pre-0.3.1"
sha256 "323d1693752f96eaa971c6df2ca1f04ae456c361f4192ee332683066eac1097d"
url "https://github.com/IsaacMarovitz/Whisky/releases/download/#{version}/Whisky.zip"
name "whisky"
desc "Wine wrapper built with SwiftUI"
homepage "https://github.com/IsaacMarovitz/Whisky"
livecheck do
url "https://github.com/IsaacMarovitz/Whisky"
regex(/(.*)/i)
strategy :github
end
auto_updates true
depends_on macos: ">= :ventura"
app "Whisky.app"
zap trash: [
"~/Library/Application Support/Whisky",
"~/Library/Containers/com.isaacmarovitz.Whisky",
"~/Library/Logs/Whisky",
"~/Library/Preferences/com.isaacmarovitz.Whisky.plist",
]
end