-
-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Expand file tree
/
Copy pathankama.rb
More file actions
33 lines (25 loc) · 789 Bytes
/
ankama.rb
File metadata and controls
33 lines (25 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cask "ankama" do
version "3.14.9"
sha256 :no_check
url "https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup.dmg"
name "Ankama Launcher"
desc "Video game launcher"
homepage "https://www.ankama.com/en/launcher"
livecheck do
url "https://launcher.cdn.ankama.com/installers/production/latest-mac.yml"
strategy :electron_builder
end
disable! date: "2026-09-01", because: :fails_gatekeeper_check
auto_updates true
depends_on :macos
app "Ankama Launcher.app"
uninstall quit: "Ankama Launcher"
zap trash: [
"~/Library/Application Support/Ankama Launcher",
"~/Library/Preferences/com.ankama.zaap.plist",
"~/Library/Saved Application State/com.ankama.zaap.savedState",
]
caveats do
requires_rosetta
end
end