mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
777 B
Ruby
28 lines
777 B
Ruby
cask "curseforge" do
|
|
version "0.239.3-1"
|
|
sha256 "40ac8d437afc0e3be3408b2b6264cb6b9e987db3563913b327b5404b7ebbbb27"
|
|
|
|
url "https://curseforge.overwolf.com/electron/mac/CurseForge-#{version}-universal-mac.zip"
|
|
name "CurseForge"
|
|
desc "Download and manage your addons and mods"
|
|
homepage "https://curseforge.overwolf.com/"
|
|
|
|
livecheck do
|
|
url "https://curseforge.overwolf.com/electron/mac/latest-mac.yml"
|
|
strategy :electron_builder
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "CurseForge.app"
|
|
|
|
uninstall launchctl: "com.overwolf.curseforge.ShipIt",
|
|
quit: "com.overwolf.curseforge"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Caches/curseforge-updater",
|
|
"~/Library/Application Support/CurseForge",
|
|
]
|
|
end
|