homebrew-cask/Casks/libreoffice.rb

22 lines
912 B
Ruby

cask :v1 => 'libreoffice' do
if Hardware::CPU.is_32_bit? || MacOS.release < :mountain_lion
version '4.3.6'
sha256 '02b78ed4e58090af93782fa6986493c115e92eae9bbc878c26cbd12633735445'
# documentfoundation.org is the official download host per the vendor homepage
url "https://download.documentfoundation.org/libreoffice/stable/#{version}/mac/x86/LibreOffice_#{version}_MacOS_x86.dmg"
else
version '4.4.2'
sha256 '12e7605f0028365bc2c430fddbd6e1a9b2b372aec46251cac655f6774c7a6766'
# documentfoundation.org is the official download host per the vendor homepage
url "https://download.documentfoundation.org/libreoffice/stable/#{version}/mac/x86_64/LibreOffice_#{version}_MacOS_x86-64.dmg"
end
gpg "#{url}.asc",
:key_id => 'c2839ecad9408fbe9531c3e9f434a1efafeeaea3'
name 'LibreOffice'
homepage 'https://www.libreoffice.org/'
license :mpl
app 'LibreOffice.app'
end