homebrew-cask/Casks/pycharm.rb

26 lines
1.1 KiB
Ruby

cask 'pycharm' do
version '2017.3.1,173.3942.36'
sha256 'cfd589b60a08a76a0d26e703a75b3aa94589608bb5f6a94dd7b437e735365f60'
url "https://download.jetbrains.com/python/pycharm-professional-#{version.before_comma}.dmg"
appcast 'https://data.services.jetbrains.com/products/releases?code=PCP&latest=true&type=release',
checkpoint: '6a41d50077381593c998d6c40d00b91927ca9dde3446ca7f4637622ca88633a3'
name 'PyCharm'
homepage 'https://www.jetbrains.com/pycharm/'
auto_updates true
app 'PyCharm.app'
uninstall_postflight do
ENV['PATH'].split(File::PATH_SEPARATOR).map { |path| File.join(path, 'charm') }.each { |path| File.delete(path) if File.exist?(path) && File.readlines(path).grep(%r{# see com.intellij.idea.SocketLock for the server side of this interface}).any? }
end
zap trash: [
"~/Library/Application Support/PyCharm#{version.major_minor}",
"~/Library/Caches/PyCharm#{version.major_minor}",
"~/Library/Logs/PyCharm#{version.major_minor}",
"~/Library/Preferences/PyCharm#{version.major_minor}",
]
end