mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
859 B
Ruby
26 lines
859 B
Ruby
cask "marathon2" do
|
|
# NOTE: "2" is not a version number, but an intrinsic part of the product name
|
|
version "20231125"
|
|
sha256 "709ab94e35a8cf83167afe6fcf14a862db945a9193deeae2ec98826f1812da52"
|
|
|
|
url "https://github.com/Aleph-One-Marathon/alephone/releases/download/release-#{version}/Marathon2-#{version}-Mac.dmg",
|
|
verified: "github.com/Aleph-One-Marathon/alephone/"
|
|
name "Marathon 2"
|
|
desc "First-person shooter, second in a trilogy"
|
|
homepage "https://alephone.lhowon.org/"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(%r{href=.*?/Marathon2[._-]v?(\d+(?:\.\d+)*)[._-]Mac\.dmg}i)
|
|
end
|
|
|
|
app "Marathon 2.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Marathon 2",
|
|
"~/Library/Logs/Marathon 2 Log.txt",
|
|
"~/Library/Preferences/Marathon 2",
|
|
"~/Library/Saved Application State/org.bungie.source.Marathon2.savedState",
|
|
]
|
|
end
|