mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
676 B
Ruby
27 lines
676 B
Ruby
cask "quaternion" do
|
|
version "0.0.95.1"
|
|
sha256 "d2f80cfd17ab25b4062032afa76aa7bf509d32fb72c91858ab04347e216df9a7"
|
|
|
|
url "https://github.com/quotient-im/Quaternion/releases/download/#{version}/quaternion-#{version}.dmg"
|
|
name "Quaternion"
|
|
desc "IM client for Matrix"
|
|
homepage "https://github.com/quotient-im/Quaternion"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^quaternion[._-]v?(\d+(?:\.\d+)+)\.dmg$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["assets"]&.map do |asset|
|
|
match = asset["name"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
match[1]
|
|
end
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "quaternion.app"
|
|
end
|