homebrew-cask/Casks/microsoft-office.rb

113 lines
5.4 KiB
Ruby

cask "microsoft-office" do
version "16.39.20071300"
sha256 "eb348c6844bcdb65c55e6180f0cf56ef70654d2af6bcb70291cceeec748b7155"
# 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_Office_#{version}_Installer.pkg"
name "Microsoft Office"
homepage "https://products.office.com/mac/microsoft-office-for-mac/"
auto_updates true
conflicts_with cask: %w[
microsoft-word
microsoft-excel
microsoft-powerpoint
microsoft-outlook
onedrive
]
depends_on macos: ">= :sierra"
pkg "Microsoft_Office_#{version}_Installer.pkg"
uninstall pkgutil: [
"com.microsoft.package.DFonts",
"com.microsoft.package.Frameworks",
"com.microsoft.package.Microsoft_AutoUpdate.app",
"com.microsoft.package.Microsoft_Excel.app",
"com.microsoft.package.Microsoft_OneNote.app",
"com.microsoft.package.Microsoft_Outlook.app",
"com.microsoft.package.Microsoft_PowerPoint.app",
"com.microsoft.package.Microsoft_Word.app",
"com.microsoft.package.Proofing_Tools",
"com.microsoft.pkg.licensing",
"com.microsoft.OneDrive",
],
# Frameworks, DFonts and ProofingTools remain in each applicaiton after pkg uninstall, delete them
delete: [
"/Applications/Microsoft Excel.app",
"/Applications/Microsoft OneNote.app",
"/Applications/Microsoft Outlook.app",
"/Applications/Microsoft PowerPoint.app",
"/Applications/Microsoft Word.app",
"/Applications/OneDrive.app",
"/Library/PrivilegedHelperTools/com.microsoft.autoupdate.helper",
],
launchctl: [
"com.microsoft.office.licensing.helper",
"com.microsoft.office.licensingV2.helper",
"com.microsoft.OneDriveStandaloneUpdater",
"com.microsoft.OneDriveStandaloneUpdaterDaemon",
"com.microsoft.OneDriveUpdaterDaemon",
"com.microsoft.autoupdate.helper",
"com.microsoft.update.agent",
],
quit: "com.microsoft.autoupdate2"
zap trash: [
"~/Library/Application Scripts/com.microsoft.Excel",
"~/Library/Application Scripts/com.microsoft.Office365ServiceV2",
"~/Library/Application Scripts/com.microsoft.Outlook",
"~/Library/Application Scripts/com.microsoft.Powerpoint",
"~/Library/Application Scripts/com.microsoft.Word",
"~/Library/Application Scripts/com.microsoft.errorreporting",
"~/Library/Application Scripts/com.microsoft.onenote.mac",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.excel.sfl*",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.powerpoint.sfl*",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.word.sfl*",
"~/Library/Application Support/CrashReporter/Microsoft Error Reporting_*.plist",
"~/Library/Application Support/Microsoft AutoUpdate",
"~/Library/Application Support/Microsoft Update Assistant",
"~/Library/Caches/Microsoft/uls/com.microsoft.autoupdate.fba",
"~/Library/Caches/Microsoft/uls/com.microsoft.autoupdate2",
"~/Library/Caches/com.microsoft.autoupdate.fba",
"~/Library/Caches/com.microsoft.autoupdate2",
"~/Library/Caches/com.microsoft.OneDriveStandaloneUpdater",
"~/Library/Caches/com.plausiblelabs.crashreporter.data/com.microsoft.OneDriveStandaloneUpdater",
"~/Library/Containers/com.microsoft.Excel",
"~/Library/Containers/com.microsoft.Office365ServiceV2",
"~/Library/Containers/com.microsoft.Outlook",
"~/Library/Containers/com.microsoft.Powerpoint",
"~/Library/Containers/com.microsoft.com.microsoft.RMS-XPCService",
"~/Library/Containers/com.microsoft.Word",
"~/Library/Containers/com.microsoft.errorreporting",
"~/Library/Containers/com.microsoft.netlib.shipassertprocess",
"~/Library/Containers/com.microsoft.onenote.mac",
"~/Library/Cookies/com.microsoft.autoupdate.fba.binarycookies",
"~/Library/Cookies/com.microsoft.autoupdate2.binarycookies",
"~/Library/Group Containers/UBF8T346G9.Office",
"~/Library/Group Containers/UBF8T346G9.OfficeOneDriveSyncIntegration",
"~/Library/Group Containers/UBF8T346G9.OfficeOsfWebHost",
"~/Library/Group Containers/UBF8T346G9.ms",
"~/Library/Preferences/com.microsoft.Excel.plist",
"~/Library/Preferences/com.microsoft.Outlook.plist",
"~/Library/Preferences/com.microsoft.Powerpoint.plist",
"~/Library/Preferences/com.microsoft.Word.plist",
"~/Library/Preferences/com.microsoft.autoupdate.fba.plist",
"~/Library/Preferences/com.microsoft.autoupdate2.plist",
"~/Library/Saved Application State/com.microsoft.autoupdate2.savedState",
"~/Library/Saved Application State/com.microsoft.office.setupassistant.savedState",
],
rmdir: [
"~/Library/Caches/Microsoft/uls",
"~/Library/Caches/Microsoft",
],
launchctl: [
"com.microsoft.autoupdate.helpertool",
"com.microsoft.autoupdate.helper",
"com.microsoft.update.agent",
],
pkgutil: [
"com.microsoft.package.Microsoft_AutoUpdate.app",
]
end