homebrew-cask/Casks/microsoft-excel.rb

40 lines
1.5 KiB
Ruby

cask "microsoft-excel" do
version "16.39.20071300"
sha256 "73c69912de92abdc29a32571c855b0798d61ac2590621be2c547ddaab5ab2ce0"
# officecdn-microsoft-com.akamaized.net/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/ was verified as official when first introduced to the cask
url "https://officecdn-microsoft-com.akamaized.net/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/Microsoft_Excel_#{version}_Installer.pkg"
appcast "https://docs.microsoft.com/en-us/officeupdates/update-history-office-for-mac"
name "Microsoft Excel"
homepage "https://products.office.com/en-US/excel"
auto_updates true
conflicts_with cask: "microsoft-office"
depends_on cask: "microsoft-auto-update"
depends_on macos: ">= :sierra"
pkg "Microsoft_Excel_#{version}_Installer.pkg",
choices: [
{
"choiceIdentifier" => "com.microsoft.autoupdate", # Office16_all_autoupdate.pkg
"choiceAttribute" => "selected",
"attributeSetting" => 0,
},
]
uninstall pkgutil: [
"com.microsoft.package.Microsoft_Excel.app",
"com.microsoft.pkg.licensing",
],
launchctl: [
"com.microsoft.office.licensingV2.helper",
]
zap trash: [
"~/Library/Application Scripts/com.microsoft.Excel",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.excel.sfl*",
"~/Library/Containers/com.microsoft.Excel",
"~/Library/Preferences/com.microsoft.Excel.plist",
]
end