homebrew-cask/Casks/intellij-idea.rb

31 lines
882 B
Ruby
Raw Normal View History

2014-11-14 01:26:06 +08:00
cask :v1 => 'intellij-idea' do
2014-11-17 00:33:21 +08:00
version '14.0.1'
sha256 'd2883c183b0dec1466c7b2bb3b105af48884da88c580207402a4b1a0d0c0a2d2'
2014-08-13 15:51:37 +08:00
url "http://download.jetbrains.com/idea/ideaIU-#{version}.dmg"
homepage 'https://www.jetbrains.com/idea/index.html'
2014-11-12 08:38:39 +08:00
license :commercial
app 'IntelliJ IDEA 14.app'
2014-09-09 20:55:27 +08:00
postflight do
plist_set(':JVMOptions:JVMVersion', '1.6+')
end
2014-10-22 18:16:41 +08:00
zap :delete => [
'~/Library/Application Support/IntelliJIdea14',
'~/Library/Preferences/IntelliJIdea14',
2014-10-22 18:16:41 +08:00
]
2014-10-04 21:56:28 +08:00
caveats <<-EOS.undent
#{title} may require Java 7 (an older version) available from the
2014-10-04 21:56:28 +08:00
caskroom-versions repository via
2014-10-04 21:56:28 +08:00
brew cask install caskroom/versions/java7
Alternatively, #{title} can be modified to use Java 8 as described in
2014-10-04 21:56:28 +08:00
https://github.com/caskroom/homebrew-cask/issues/4500#issuecomment-43955932
EOS
end