homebrew-cask/Casks/atom.rb

34 lines
1.2 KiB
Ruby
Raw Normal View History

2015-12-18 09:15:28 +08:00
cask 'atom' do
2016-02-10 05:10:51 +08:00
version '1.5.0'
sha256 'be9e7a6e40bf97c6cfcf3014128ec895d5687da39e11c58377595c5a3ad56ce6'
2015-07-11 01:42:46 +08:00
# github.com is the official download host per the vendor homepage
url "https://github.com/atom/atom/releases/download/v#{version}/atom-mac.zip"
2015-12-26 04:57:40 +08:00
appcast 'https://github.com/atom/atom/releases.atom',
2016-02-10 05:10:51 +08:00
checkpoint: 'c702bd8ef436faaf5573e13b6a9b7f4fff55247d3d47b0ace5126d9ac8b633cb'
name 'Github Atom'
homepage 'https://atom.io/'
license :mit
2015-12-29 00:19:21 +08:00
auto_updates true
depends_on macos: '>= :mountain_lion'
2015-07-11 01:42:46 +08:00
2014-09-16 00:05:16 +08:00
app 'Atom.app'
binary 'Atom.app/Contents/Resources/app/apm/node_modules/.bin/apm', target: 'apm'
binary 'Atom.app/Contents/Resources/app/atom.sh', target: 'atom'
2014-11-02 07:14:30 +08:00
2014-09-09 20:55:26 +08:00
postflight do
2014-11-02 07:14:30 +08:00
suppress_move_to_applications
end
2014-10-11 22:23:44 +08:00
zap delete: [
'~/.atom',
'~/Library/Application Support/ShipIt_stderr.log',
'~/Library/Application Support/Atom',
'~/Library/Application Support/ShipIt_stdout.log',
'~/Library/Application Support/com.github.atom.ShipIt',
'~/Library/Caches/com.github.atom',
'~/Library/Preferences/com.github.atom.plist',
]
2014-04-25 20:39:54 +08:00
end