Files
homebrew-cask/Casks/u/unity-windows-support-for-editor.rb

28 lines
1.0 KiB
Ruby

cask "unity-windows-support-for-editor" do
version "2023.2.2f1,dfe9eb92cac5"
sha256 "029c233d8f53f9c7ca386536ca4c2c2f01d0179ea48c81f78d103fdd0b85f77d"
url "https://download.unity3d.com/download_unity/#{version.csv.second}/MacEditorTargetInstaller/UnitySetup-Windows-Mono-Support-for-Editor-#{version.csv.first}.pkg",
verified: "download.unity3d.com/download_unity/"
name "Unity Windows (Mono) Build Support"
desc "Windows (Mono) 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-Windows-Mono-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-Windows-Mono-Support-for-Editor-#{version.csv.first}.pkg"
uninstall pkgutil: "com.unity3d.WindowsStandaloneSupport"
end