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.
25 lines
643 B
Ruby
25 lines
643 B
Ruby
cask "5kplayer" do
|
|
version "6.9.0"
|
|
sha256 :no_check
|
|
|
|
url "https://www.5kplayer.com/download/5kplayer.dmg"
|
|
name "5KPlayer"
|
|
desc "Play 4K/1080p/360 degree video, MP3 AAC APE FLAC music without quality loss"
|
|
homepage "https://www.5kplayer.com/"
|
|
|
|
livecheck do
|
|
url "https://www.5kplayer.com/upgrade/mac/updatecast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
app "5KPlayer.app"
|
|
|
|
uninstall quit: "com.digiarty.5kplayer"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.digiarty.5kplayer",
|
|
"~/Library/Preferences/com.digiarty.5kplayer.plist",
|
|
"~/Library/Saved Application State/com.digiarty.5kplayer.savedState",
|
|
]
|
|
end
|