mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
800 B
Ruby
26 lines
800 B
Ruby
cask "aleph-one" do
|
||
version "20231125"
|
||
sha256 "0b6095f0335350a9b30dfcd42008b8b2bf211e0107070d905c1d70d8c81369ec"
|
||
|
||
url "https://github.com/Aleph-One-Marathon/alephone/releases/download/release-#{version}/AlephOne-#{version}-Mac.dmg",
|
||
verified: "github.com/Aleph-One-Marathon/alephone/"
|
||
name "Aleph One"
|
||
desc "Open-source continuation of Bungie’s Marathon 2 game engine"
|
||
homepage "https://alephone.lhowon.org/"
|
||
|
||
livecheck do
|
||
url :homepage
|
||
regex(%r{href=.*?/AlephOne[._-]v?(\d+(?:\.\d+)*)[._-]Mac\.dmg}i)
|
||
end
|
||
|
||
depends_on macos: ">= :high_sierra"
|
||
|
||
app "Aleph One.app"
|
||
|
||
zap trash: [
|
||
"~/Library/Logs/Aleph One Log.txt",
|
||
"~/Library/Preferences/org.bungie.source.AlephOne*",
|
||
"~/Library/Saved Application State/org.bungie.source.AlephOne.savedState",
|
||
]
|
||
end
|