homebrew-cask/Casks/i/intellij-idea-ce.rb

46 lines
1.6 KiB
Ruby

cask "intellij-idea-ce" do
arch arm: "-aarch64"
version "2023.2.1,232.9559.62"
sha256 arm: "f168e3d751f3f638a38ab9f9d974ca721e21a23e52e928ef297fc7a5026a30c6",
intel: "6c1eb5c4ef27c2cb16643befd11497b280ca782109748c9fa1a9badbd9a519ca"
url "https://download.jetbrains.com/idea/ideaIC-#{version.csv.first}#{arch}.dmg"
name "IntelliJ IDEA Community Edition"
name "IntelliJ IDEA CE"
desc "IDE for Java development - community edition"
homepage "https://www.jetbrains.com/idea/"
livecheck do
url "https://data.services.jetbrains.com/products/releases?code=IIC&latest=true&type=release"
strategy :json do |json|
json["IIC"].map do |release|
"#{release["version"]},#{release["build"]}"
end
end
end
auto_updates true
conflicts_with cask: "homebrew/cask-versions/intellij-idea-ce19"
depends_on macos: ">= :high_sierra"
app "IntelliJ IDEA CE.app"
uninstall_postflight do
ENV["PATH"].split(File::PATH_SEPARATOR).map { |path| File.join(path, "idea") }.each do |path|
if File.readable?(path) &&
File.readlines(path).grep(/# see com.intellij.idea.SocketLock for the server side of this interface/).any?
File.delete(path)
end
end
end
zap trash: [
"~/Library/Application Support/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Caches/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Logs/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Preferences/com.jetbrains.intellij.ce.plist",
"~/Library/Saved Application State/com.jetbrains.intellij.ce.savedState",
]
end