cinebench 2024

This commit is contained in:
Bevan Kay
2023-12-06 23:37:34 +11:00
parent 5bea472353
commit 482a57e5e0
+1 -19
View File
@@ -1,6 +1,6 @@
cask "cinebench" do
version "2024"
sha256 "dcc840852c85c2f9ea39f55e78b23efbb59a27960555c0fb319d5bce7f51fdb6"
sha256 "abd8533154d54cb74dc005226177767b7f16d6e647a0cc075a2f45854d3887ea"
url "https://mx-app-blob-prod.maxon.net/mx-package-production/website/macos/maxon/cinebench/Cinebench#{version}_macOS.dmg",
referer: "https://www.maxon.net/en/downloads/cinebench-#{version}-downloads"
@@ -8,27 +8,9 @@ cask "cinebench" do
desc "Hardware benchmarking utility"
homepage "https://www.maxon.net/products/cinebench/"
# The content of the Downloads page is kept in a `payload.js` file but the
# URL contains a numeric identifier that changes when the website is updated.
# As such, we have to identify the JS file URL from the Downloads page HTML
# before fetching and checking the JS file for version information.
livecheck do
url "https://www.maxon.net/en/downloads"
regex(/cinebench-?[rv]?(\d+(?:\.\d+)*)-downloads/i)
strategy :page_match do |page, regex|
# Find the current JS file URL on the Downloads page
js_match = page.match(%r{href=["']?([^"' >]+?/en/downloads/payload.js[^"' >]*?)}i)
next if js_match.blank?
# Fetch the JS file (using the absolute URL)
js_response = Homebrew::Livecheck::Strategy.page_content(
URI.join(@url, js_match[1]).to_s,
)
next if (js_content = js_response[:content]).blank?
# Identify the version from the versioned downloads page URL
js_content.scan(regex).map { |match| match[0] }
end
end
depends_on macos: ">= :big_sur"