21 lines
664 B
Ruby
21 lines
664 B
Ruby
cask "unity-ios-support-for-editor" do
|
|
version "2023.2.20f1,0e25a174756c"
|
|
sha256 "57582ddd821bbbcc0d33fff594afa50b096535ee061c363b7691c9a28a1132ef"
|
|
|
|
url "https://download.unity3d.com/download_unity/#{version.csv.second}/MacEditorTargetInstaller/UnitySetup-iOS-Support-for-Editor-#{version.csv.first}.pkg",
|
|
verified: "download.unity3d.com/download_unity/"
|
|
name "Unity iOS Build Support"
|
|
desc "iOS target support for Unity"
|
|
homepage "https://unity.com/products"
|
|
|
|
livecheck do
|
|
cask "unity"
|
|
end
|
|
|
|
depends_on cask: "unity"
|
|
|
|
pkg "UnitySetup-iOS-Support-for-Editor-#{version.csv.first}.pkg"
|
|
|
|
uninstall pkgutil: "com.unity3d.iOSSupport"
|
|
end
|