mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
23 lines
681 B
Ruby
23 lines
681 B
Ruby
cask "mindmac" do
|
|
version "1.8.2"
|
|
sha256 "15e46f0c6168b8f3d920fdadf2805ec2519d36ab38d41993a96bb32fad82be69"
|
|
|
|
url "https://github.com/MindMacApp/MindMac/releases/download/#{version}/MindMac_#{version}.dmg",
|
|
verified: "github.com/MindMacApp/MindMac/"
|
|
name "MindMac"
|
|
desc "ChatGPT client"
|
|
homepage "https://mindmac.app/"
|
|
|
|
depends_on macos: ">= :ventura"
|
|
|
|
app "MindMac.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/app.mindmac.macos",
|
|
"~/Library/Application Support/MindMac",
|
|
"~/Library/Caches/app.mindmac.macos",
|
|
"~/Library/Preferences/app.mindmac.macos.plist",
|
|
"~/Library/Saved Application State/app.mindmac.macos.savedState",
|
|
]
|
|
end
|