mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
1005 B
Ruby
28 lines
1005 B
Ruby
cask "unity-webgl-support-for-editor" do
|
|
version "2023.2.2f1,dfe9eb92cac5"
|
|
sha256 "d2d99a7dc3603067c79e5084a97c7d171707d6cdc2935d0f9d25608175406c4a"
|
|
|
|
url "https://download.unity3d.com/download_unity/#{version.csv.second}/MacEditorTargetInstaller/UnitySetup-WebGL-Support-for-Editor-#{version.csv.first}.pkg",
|
|
verified: "download.unity3d.com/download_unity/"
|
|
name "Unity WebGL Build Support"
|
|
desc "WebGL target support for Unity"
|
|
homepage "https://unity.com/products"
|
|
|
|
livecheck do
|
|
url "https://public-cdn.cloud.unity3d.com/hub/prod/releases-darwin.json"
|
|
regex(%r{
|
|
/download_unity/(\h+)/MacEditorTargetInstaller
|
|
/UnitySetup-WebGL-Support-for-Editor-(\d+(?:\.\d+)+[a-z]*\d*)\.pkg
|
|
}ix)
|
|
strategy :page_match do |page, regex|
|
|
page.scan(regex).map { |match| "#{match[1]},#{match[0]}" }
|
|
end
|
|
end
|
|
|
|
depends_on cask: "unity"
|
|
|
|
pkg "UnitySetup-WebGL-Support-for-Editor-#{version.csv.first}.pkg"
|
|
|
|
uninstall pkgutil: "com.unity3d.WebGLSupport"
|
|
end
|