homebrew-cask/Casks/pycharm.rb

28 lines
1.1 KiB
Ruby

cask 'pycharm' do
version '2017.2.3,172.3968.37'
sha256 'ffa65e5678b317b88be9333b76c42e2ecf3580120595a23d556535712ab05fec'
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: 'b79c2c5844203e01de763ab482e0ef62b09dfabe87731e9a0b33fe73c75fc3fc'
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 delete: [
"~/Library/Caches/PyCharm#{version.major_minor}",
"~/Library/Logs/PyCharm#{version.major_minor}",
],
trash: [
"~/Library/Application Support/PyCharm#{version.major_minor}",
"~/Library/Preferences/PyCharm#{version.major_minor}",
]
end