Files
homebrew-cask/Casks/p/polyphone.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

23 lines
724 B
Ruby

cask "polyphone" do
version "2.3.1,905"
sha256 "46d3abf42f88cc157d7f2d751619d7c599789ebef65b2d31f5873342f1184e9d"
url "https://www.polyphone-soundfonts.com/download/file/#{version.csv.second}-polyphone-#{version.csv.first.dots_to_hyphens}-dmg/latest/download"
name "Polyphone"
desc "Soundfont editor for quickly designing musical instruments"
homepage "https://polyphone-soundfonts.com/"
livecheck do
url "https://www.polyphone-soundfonts.com/download"
regex(/(\d+)[._-]polyphone[._-]v?(\d+(?:-\d+)+)[._-]dmg/i)
strategy :page_match do |page, regex|
match = page.match(regex)
next if match.blank?
"#{match[2].tr("-", ".")},#{match[1]}"
end
end
app "polyphone.app"
end