mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
20 lines
521 B
Ruby
20 lines
521 B
Ruby
cask "x-moto" do
|
|
version "0.6.2"
|
|
sha256 "40818cff5020b8b962f680ef7f99f6cce26b3ff1da6775bba39313461df62d44"
|
|
|
|
url "https://github.com/xmoto/xmoto/releases/download/v#{version}/xmoto-#{version}-macos.dmg",
|
|
verified: "github.com/xmoto/xmoto/"
|
|
name "X-Moto"
|
|
desc "2D motocross platform game"
|
|
homepage "https://xmoto.tuxfamily.org/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
app "X-Moto.app"
|
|
|
|
zap trash: "~/Library/Saved Application State/net.sourceforge.xmoto.savedState"
|
|
end
|