homebrew-cask/Casks/mps.rb

31 lines
1.1 KiB
Ruby

cask "mps" do
version "2020.1.4,201.8743.1536"
sha256 "76fa44e56d652ce55d017adc9a3ab1d6cf709a77759dcc52daa5f4126b801daa"
url "https://download.jetbrains.com/mps/#{version.before_comma.major_minor}/MPS-#{version.before_comma}-macos.dmg"
appcast "https://data.services.jetbrains.com/products/releases?code=MPS&latest=true&type=release"
name "JetBrains MPS"
homepage "https://www.jetbrains.com/mps/"
auto_updates true
app "MPS #{version.major_minor}.app"
uninstall_postflight do
ENV["PATH"].split(File::PATH_SEPARATOR).map { |path| File.join(path, "mps") }.each do |path|
if File.exist?(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: [
"~/MPSSamples.#{version.before_comma.major_minor}",
"~/Library/Application Support/MPS#{version.before_comma.major_minor}",
"~/Library/Caches/MPS#{version.before_comma.major_minor}",
"~/Library/Logs/MPS#{version.before_comma.major_minor}",
"~/Library/Preferences/MPS#{version.before_comma.major_minor}",
]
end