mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
18 lines
448 B
Ruby
18 lines
448 B
Ruby
cask :v1 => 'firefox' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url 'https://download.mozilla.org/?product=firefox-latest&os=osx&lang=en-US'
|
|
name 'Firefox'
|
|
name 'Mozilla Firefox'
|
|
homepage 'https://www.mozilla.org/en-US/firefox/'
|
|
license :oss
|
|
tags :vendor => 'Mozilla'
|
|
|
|
app 'Firefox.app'
|
|
|
|
zap :delete => [
|
|
'~/Library/Application Support/Firefox',
|
|
'~/Library/Caches/Firefox',
|
|
]
|
|
end
|