homebrew-cask/Casks/g/google-earth-pro.rb

39 lines
1.7 KiB
Ruby

cask "google-earth-pro" do
version "7.3.6.9796"
sha256 :no_check # required as upstream package is updated in-place
url "https://dl.google.com/dl/earth/client/advanced/current/googleearthpromac-intel-#{version.major_minor_patch}.dmg"
name "Google Earth Pro"
desc "Virtual globe"
homepage "https://www.google.com/earth/"
livecheck do
url "https://dl.google.com/earth/client/advanced/current/GoogleEarthProMac-Intel.dmg"
strategy :extract_plist
end
pkg "Install Google Earth Pro #{version}.pkg"
# Some launchctl and pkgutil items are shared with other Google apps, they should only be removed in the zap stanza
# See: https://github.com/Homebrew/homebrew-cask/pull/92704#issuecomment-727163169
# launchctl: com.google.keystone.daemon, com.google.keystone.system.agent, com.google.keystone.system.xpcservice
# pkgutil: com.google.pkg.Keystone
uninstall pkgutil: "com.Google.GoogleEarthPro"
zap launchctl: [
"com.google.keystone.agent",
"com.google.keystone.daemon",
"com.google.keystone.system.agent",
"com.google.keystone.system.xpcservice",
"com.google.keystone.xpcservice",
],
pkgutil: "com.google.pkg.Keystone",
trash: [
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.google.googleearthpro.sfl*",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.google.googleearthupdatehelper.sfl*",
"~/Library/Application Support/Google Earth",
"~/Library/Caches/com.Google.GoogleEarthPro",
"~/Library/Caches/Google Earth",
]
end