homebrew-cask/Casks/libreoffice.rb

44 lines
1.8 KiB
Ruby

cask "libreoffice" do
version "7.0.3"
sha256 "9e0a8fb874d4f98954ab7822399a28602362d535617b53ef04f1251bd91c0e4a"
url "https://download.documentfoundation.org/libreoffice/stable/#{version}/mac/x86_64/LibreOffice_#{version}_MacOS_x86-64.dmg",
verified: "documentfoundation.org/"
appcast "https://download.documentfoundation.org/libreoffice/stable/"
name "LibreOffice"
desc "Free cross-platform office suite"
homepage "https://www.libreoffice.org/"
conflicts_with cask: "homebrew/cask-versions/libreoffice-still"
depends_on macos: ">= :sierra"
app "LibreOffice.app"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/gengal"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/regmerge"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/regview"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/senddoc"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/ui-previewer"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/uno"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/unoinfo"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/unopkg"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/uri-encode"
binary "#{appdir}/LibreOffice.app/Contents/MacOS/xpdfimport"
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
shimscript = "#{staged_path}/soffice.wrapper.sh"
binary shimscript, target: "soffice"
preflight do
IO.write shimscript, <<~EOS
#!/bin/sh
'#{appdir}/LibreOffice.app/Contents/MacOS/soffice' "$@"
EOS
end
zap trash: [
"~/Library/Application Support/LibreOffice",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/org.libreoffice.script.sfl*",
"~/Library/Preferences/org.libreoffice.script.plist",
"~/Library/Saved Application State/org.libreoffice.script.savedState",
]
end