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.
28 lines
732 B
Ruby
28 lines
732 B
Ruby
cask "twitch-studio" do
|
|
version "0.114.8"
|
|
sha256 :no_check
|
|
|
|
url "https://live.release.spotlight.twitchsvc.net/installer/mac/twitchstudio.dmg",
|
|
verified: "live.release.spotlight.twitchsvc.net/"
|
|
name "Twitch Studio"
|
|
desc "Free streaming software designed for new streamers"
|
|
homepage "https://www.twitch.tv/broadcast/studio/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :extract_plist do |versions|
|
|
versions.values.map(&:short_version).compact.first
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "Twitch Studio.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Twitch Studio",
|
|
"~/Library/Application Support/twitch-desktop-electron-platform",
|
|
"~/Library/Preferences/com.twitch.spotlight.plist",
|
|
]
|
|
end
|