mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
857 B
Ruby
26 lines
857 B
Ruby
cask "nightingale" do
|
|
version "1.12.1,2454"
|
|
sha256 "f1a07e5bb6e069ac2f9fdc89c7708d3badb3b41e27199920a6d55b462764c454"
|
|
|
|
url "https://github.com/nightingale-media-player/nightingale-hacking/releases/download/nightingale-#{version.csv.first}/Nightingale_#{version.csv.first}-#{version.csv.second}_macosx-i686.dmg",
|
|
verified: "github.com/nightingale-media-player/nightingale-hacking/"
|
|
name "Nightingale"
|
|
desc "Working tree for the community fork of Songbird"
|
|
homepage "https://getnightingale.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^Nightingale[._-]v?(\d+(?:\.\d+)+)-(\d+)_macosx-i686\.dmg$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["assets"]&.map do |asset|
|
|
match = asset["name"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
"#{match[1]},#{match[2]}"
|
|
end
|
|
end
|
|
end
|
|
|
|
app "Nightingale.app"
|
|
end
|