Files
homebrew-cask/Casks/s/steam.rb
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

37 lines
986 B
Ruby

cask "steam" do
version "4.0"
sha256 :no_check
url "https://cdn.cloudflare.steamstatic.com/client/installer/steam.dmg",
verified: "cdn.cloudflare.steamstatic.com/"
name "Steam"
desc "Video game digital distribution service"
homepage "https://store.steampowered.com/about/"
livecheck do
url :url
strategy :extract_plist
end
auto_updates true
app "Steam.app"
uninstall quit: [
"com.valvesoftware.steam",
"com.valvesoftware.steam.helper",
"com.valvesoftware.steam.helper.EH",
],
launchctl: [
"com.valvesoftware.steamclean",
"com.valvesoftware.steam.ipctool",
]
zap trash: [
"~/Library/LaunchAgents/com.valvesoftware.steamclean.plist",
"~/Library/Preferences/com.valvesoftware.steam.helper.plist",
"~/Library/Application Support/Steam/",
"~/Library/Saved Application State/com.valvesoftware.steam.savedState/",
]
end