homebrew-cask/Casks/libreoffice.rb

19 lines
704 B
Ruby
Raw Normal View History

2014-11-14 01:26:15 +08:00
cask :v1 => 'libreoffice' do
2014-12-21 19:58:47 +08:00
version '4.3.5'
2014-12-11 00:55:20 +08:00
if Hardware::CPU.is_32_bit? or MacOS.release < :mountain_lion
2014-12-21 19:58:47 +08:00
sha256 '0121e87396a880884a6fac02e7799fe5bc4cbfe0e346a60aa21176acbd44602f'
2014-10-07 22:47:21 +08:00
url "https://download.documentfoundation.org/libreoffice/stable/#{version}/mac/x86/LibreOffice_#{version}_MacOS_x86.dmg"
else
2014-12-21 19:58:47 +08:00
sha256 '46d33f40207fcdc8737e44ee951432727ed19788721746ea44e59cc14da15553'
2014-10-07 22:47:21 +08:00
url "https://download.documentfoundation.org/libreoffice/stable/#{version}/mac/x86_64/LibreOffice_#{version}_MacOS_x86-64.dmg"
end
2014-09-15 03:40:59 +08:00
gpg "#{url}.asc",
:key_id => 'c2839ecad9408fbe9531c3e9f434a1efafeeaea3'
2014-10-07 22:47:21 +08:00
homepage 'https://www.libreoffice.org/'
license :oss
2014-10-07 22:47:21 +08:00
2014-09-16 00:05:50 +08:00
app 'LibreOffice.app'
2012-10-19 10:08:28 +08:00
end