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.
23 lines
614 B
Ruby
23 lines
614 B
Ruby
cask "smplayer" do
|
|
version "23.6.0"
|
|
sha256 "9820ae370d2d695eaa6fdaa4313ec9f791d42a4ead1b5ef3ca4eec78e04bddb3"
|
|
|
|
url "https://github.com/smplayer-dev/smplayer/releases/download/v#{version}/smplayer-#{version}.dmg",
|
|
verified: "github.com/smplayer-dev/smplayer/"
|
|
name "SMPlayer"
|
|
desc "Media player with built-in codecs"
|
|
homepage "https://www.smplayer.info/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "SMPlayer.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/info.smplayer.SMPlayer.plist",
|
|
"~/Library/Saved Application State/info.smplayer.SMPlayer.savedState",
|
|
]
|
|
end
|