mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
1018 B
Ruby
28 lines
1018 B
Ruby
cask "unity-android-support-for-editor" do
|
|
version "2023.2.2f1,dfe9eb92cac5"
|
|
sha256 "2d24af65d5a036580f31f9eef326c363647cf7edbfc5b86f6df41df16fdab691"
|
|
|
|
url "https://download.unity3d.com/download_unity/#{version.csv.second}/MacEditorTargetInstaller/UnitySetup-Android-Support-for-Editor-#{version.csv.first}.pkg",
|
|
verified: "download.unity3d.com/download_unity/"
|
|
name "Unity Android Build Support"
|
|
desc "Android 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-Android-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-Android-Support-for-Editor-#{version.csv.first}.pkg"
|
|
|
|
uninstall pkgutil: "com.unity3d.AndroidPlayer"
|
|
end
|