forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintellij-idea-ce.rb
29 lines (23 loc) · 944 Bytes
/
intellij-idea-ce.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
cask :v1 => 'intellij-idea-ce' do
version '14.1.3'
sha256 'e0e21b9ee9ac881c10b62507eaae4c2dc651bee631fbb9a0fbac9a289d405616'
url "http://download.jetbrains.com/idea/ideaIC-#{version}.dmg"
name 'IntelliJ IDEA Community Edition'
homepage 'https://www.jetbrains.com/idea/'
license :apache
app 'IntelliJ IDEA 14 CE.app'
zap :delete => [
'~/Library/Application Support/IdeaIC14',
'~/Library/Preferences/IdeaIC14',
'~/Library/Caches/IdeaIC14',
'~/Library/Logs/IdeaIC14',
]
caveats <<-EOS.undent
#{token} requires Java 6 like any other IntelliJ-based IDE.
You can install it with
brew cask install caskroom/homebrew-versions/java6
The vendor (JetBrains) doesn't support newer versions of Java (yet)
due to several critical issues, see details at
https://intellij-support.jetbrains.com/entries/27854363
EOS
end