Files
homebrew-cask/Casks/p/pycharm.rb
2023-11-14 16:39:53 -05:00

48 lines
1.6 KiB
Ruby

cask "pycharm" do
arch arm: "-aarch64"
version "2023.2.5,232.10227.11"
sha256 arm: "ee1e255047a5cf452c6f4e7b981f27edcf8bd7efa3be51e7d75d2defe63c5105",
intel: "a8fbd5fda39cf94ccf86918fe170bcd74595e0d59491b79c329033d0e517ae2d"
url "https://download.jetbrains.com/python/pycharm-professional-#{version.csv.first}#{arch}.dmg"
name "PyCharm"
name "PyCharm Professional"
desc "IDE for professional Python development"
homepage "https://www.jetbrains.com/pycharm/"
livecheck do
url "https://data.services.jetbrains.com/products/releases?code=PCP&latest=true&type=release"
strategy :json do |json|
json["PCP"].map do |release|
"#{release["version"]},#{release["build"]}"
end
end
end
auto_updates true
depends_on macos: ">= :high_sierra"
app "PyCharm.app"
uninstall_postflight do
ENV["PATH"].split(File::PATH_SEPARATOR).map { |path| File.join(path, "charm") }.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/PyCharm#{version.major_minor}",
"~/Library/Application Support/PyCharm#{version.major_minor}",
"~/Library/Caches/JetBrains/PyCharm#{version.major_minor}",
"~/Library/Logs/JetBrains/PyCharm#{version.major_minor}",
"~/Library/Preferences/com.jetbrains.pycharm.plist",
"~/Library/Preferences/jetbrains.pycharm.*.plist",
"~/Library/Preferences/PyCharm#{version.major_minor}",
"~/Library/Saved Application State/com.jetbrains.pycharm.savedState",
]
end