homebrew-cask/Casks/z/zoom.rb

79 lines
3.0 KiB
Ruby

cask "zoom" do
arch arm: "arm64/"
version "5.15.7.21404"
sha256 arm: "a954ea0392c612585deb7f1ed05d81152e653c17588f45cd8043b864f7df7d7a",
intel: "e80ce88da7e95716eba354a4ddbf005405d539b78fa3a0ac7a23808f5b5c615c"
url "https://cdn.zoom.us/prod/#{version}/#{arch}Zoom.pkg"
name "Zoom.us"
desc "Video communication and virtual meeting platform"
homepage "https://www.zoom.us/"
livecheck do
url "https://zoom.us/client/latest/Zoom.pkg"
strategy :header_match
end
auto_updates true
conflicts_with cask: "zoom-for-it-admins"
pkg "Zoom.pkg"
postflight do
# Description: Ensure console variant of postinstall is non-interactive.
# This is because `open "$APP_PATH"&` is called from the postinstall
# script of the package and we don't want any user intervention there.
retries ||= 3
ohai "The Zoom package postinstall script launches the Zoom app" if retries >= 3
ohai "Attempting to close zoom.us.app to avoid unwanted user intervention" if retries >= 3
return unless system_command "/usr/bin/pkill", args: ["-f", "/Applications/zoom.us.app"]
rescue RuntimeError
sleep 1
retry unless (retries -= 1).zero?
opoo "Unable to forcibly close zoom.us.app"
end
uninstall signal: ["KILL", "us.zoom.xos"],
pkgutil: "us.zoom.pkg.videomeeting",
launchctl: "us.zoom.ZoomDaemon",
delete: [
"/Applications/zoom.us.app",
"/Library/Internet Plug-Ins/ZoomUsPlugIn.plugin",
"/Library/Logs/DiagnosticReports/zoom.us*",
"/Library/PrivilegedHelperTools/us.zoom.ZoomDaemon",
]
zap trash: [
"~/.zoomus",
"~/Desktop/Zoom",
"~/Documents/Zoom",
"~/Library/Application Scripts/*.ZoomClient3rd",
"~/Library/Application Support/CloudDocs/session/containers/iCloud.us.zoom.videomeetings.plist",
"~/Library/Application Support/CloudDocs/session/containers/iCloud.us.zoom.videomeetings",
"~/Library/Application Support/CrashReporter/zoom.us*",
"~/Library/Application Support/zoom.us",
"~/Library/Caches/us.zoom.xos",
"~/Library/Cookies/us.zoom.xos.binarycookies",
"~/Library/Group Containers/*.ZoomClient3rd",
"~/Library/HTTPStorages/us.zoom.xos",
"~/Library/HTTPStorages/us.zoom.xos.binarycookies",
"~/Library/Internet Plug-Ins/ZoomUsPlugIn.plugin",
"~/Library/Logs/zoom.us",
"~/Library/Logs/zoominstall.log",
"~/Library/Logs/ZoomPhone",
"~/Library/Preferences/us.zoom.airhost.plist",
"~/Library/Preferences/us.zoom.caphost.plist",
"~/Library/Preferences/us.zoom.Transcode.plist",
"~/Library/Preferences/us.zoom.xos.Hotkey.plist",
"~/Library/Preferences/us.zoom.xos.plist",
"~/Library/Preferences/us.zoom.ZoomAutoUpdater.plist",
"~/Library/Preferences/ZoomChat.plist",
"~/Library/Safari/PerSiteZoomPreferences.plist",
"~/Library/SafariTechnologyPreview/PerSiteZoomPreferences.plist",
"~/Library/Saved Application State/us.zoom.xos.savedState",
"~/Library/WebKit/us.zoom.xos",
]
end