forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchromium.rb
19 lines (16 loc) · 849 Bytes
/
chromium.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cask 'chromium' do
version '696687'
sha256 'd83f8e63edbe6262e8ae0db9e3a1c8a85f11d0043c76d790d335ae4fe6885aa7'
# commondatastorage.googleapis.com/chromium-browser-snapshots/Mac was verified as official when first introduced to the cask
url "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Mac/#{version}/chrome-mac.zip"
appcast 'https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Mac%2FLAST_CHANGE?alt=media'
name 'Chromium'
homepage 'https://www.chromium.org/Home'
app 'chrome-mac/Chromium.app'
zap trash: [
'~/Library/Preferences/org.chromium.Chromium.plist',
'~/Library/Caches/Chromium',
'~/Library/Application Support/Chromium',
'~/Library/Saved Application State/org.chromium.Chromium.savedState',
]
end