phinze/homebrew-cask

View on GitHub
Casks/o/osu.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "osu" do
  arch arm: "Apple.Silicon", intel: "Intel"

  version "2024.906.2"
  sha256 arm:   "041f16d63430148c307fb279ea2c8884a3169433066c9b479dd2e489ba391843",
         intel: "655560cae8f639cf1cdce903a7b57e470317a010c87717eeb08a55c10a583c38"

  url "https://github.com/ppy/osu/releases/download/#{version}/osu.app.#{arch}.zip"
  name "osu!"
  desc "Rhythm game"
  homepage "https://github.com/ppy/osu/"

  livecheck do
    url :url
    strategy :github_latest
  end

  depends_on macos: ">= :sierra"

  app "osu!.app"

  zap trash: [
    "~/.local/share/osu",
    "~/Library/Saved Application State/sh.ppy.osu.lazer.savedState",
  ]
end