Files
homebrew-cask/Casks/b/beatunes.rb
2023-09-14 17:18:14 -04:00

29 lines
817 B
Ruby

cask "beatunes" do
version "5.2.33"
sha256 "a901d5d372f62f2414ceaa77322644c1c8423407d578091b85c2a171d254dac7"
url "https://coxy.beatunes.com/download/beaTunes-#{version.dots_to_hyphens}.dmg"
name "beaTunes"
desc "Analyze, inspect, and play songs"
homepage "https://www.beatunes.com/"
livecheck do
url "https://www.beatunes.com/en/beatunes-download.html"
regex(/href=.*?beaTunes[._-]?v?(\d+(?:-\d+)+)\.dmg/i)
strategy :page_match do |page, regex|
page.scan(regex)&.map { |match| match[0].tr("-", ".") }
end
end
depends_on macos: ">= :el_capitan"
app "beaTunes#{version.major}.app"
zap trash: [
"~/Library/Application Support/beaTunes",
"~/Library/Caches/beaTunes",
"~/Library/Logs/beaTunes",
"~/Library/Preferences/com.tagtraum.beatunes.plist",
]
end