homebrew-cask/Casks/intellij-idea.rb

32 lines
1.0 KiB
Ruby
Raw Normal View History

2014-11-14 01:26:06 +08:00
cask :v1 => 'intellij-idea' do
version '14.1.4'
sha256 '211b8a146870bbf1ac20a0498a49863dbbc1f06989a4780c602ba115a9c0a943'
2015-06-29 14:32:18 +08:00
url "https://download.jetbrains.com/idea/ideaIU-#{version}.dmg"
2015-01-05 00:57:22 +08:00
name 'IntelliJ IDEA'
2014-12-25 01:39:26 +08:00
homepage 'https://www.jetbrains.com/idea/'
2014-11-12 08:38:39 +08:00
license :commercial
app 'IntelliJ IDEA 14.app'
2014-10-22 18:16:41 +08:00
zap :delete => [
'~/Library/Application Support/IntelliJIdea14',
'~/Library/Preferences/IntelliJIdea14',
2015-06-25 18:00:40 +08:00
'~/Library/Preferences/com.jetbrains.intellij.plist',
2014-10-22 18:16:41 +08:00
]
2014-10-04 21:56:28 +08:00
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
To use existing newer Java at your own risk,
add JVMVersion=1.6+ to ~/Library/Preferences/IntelliJIdea14/idea.properties
2014-10-04 21:56:28 +08:00
EOS
end