homebrew-cask/Casks/u/unity.rb

42 lines
1.5 KiB
Ruby

cask "unity" do
arch arm: "Arm64"
version "2023.2.2f1,dfe9eb92cac5"
sha256 arm: "ac45f43f28a1bbfe3e876d3a9771a3b24e999b66300544158d4dc6ed98deb557",
intel: "2ff82d47d67c16fb418e3ab8a2921a1ffeff795be17685821fc58b6acac4bd70"
url "https://download.unity3d.com/download_unity/#{version.csv.second}/MacEditorInstaller#{arch}/Unity-#{version.csv.first}.pkg",
verified: "download.unity3d.com/download_unity/"
name "Unity Editor"
desc "Platform for 3D content"
homepage "https://unity.com/"
livecheck do
url "https://public-cdn.cloud.unity3d.com/hub/prod/releases-darwin.json"
regex(%r{/download_unity/(\h+)/MacEditorInstaller/Unity-(\d+(?:\.\d+)+[a-z]*\d*)\.pkg}i)
strategy :page_match do |page, regex|
page.scan(regex).map { |match| "#{match[1]},#{match[0]}" }
end
end
depends_on cask: "unity-hub"
pkg "Unity-#{version.csv.first}.pkg"
uninstall quit: "com.unity3d.UnityEditor5.x",
pkgutil: "com.unity3d.UnityEditor5.x",
delete: "/Applications/Unity"
zap trash: [
"/Library/Application Support/Unity",
"~/Library/Application Support/Unity",
"~/Library/Application Support/UnityHub",
"~/Library/Caches/com.unity3d.UnityEditor",
"~/Library/Logs/Unity",
"~/Library/Preferences/com.unity3d.unityhub.plist",
"~/Library/Saved Application State/com.unity3d.unityhub.savedState",
"~/Library/Unity",
],
delete: "/Library/Application Support/Unity"
end