homebrew-cask/Casks/springtoolsuite.rb

35 lines
1.2 KiB
Ruby

cask "springtoolsuite" do
arch arm: "aarch64", intel: "x86_64"
version "4.18.0,4.27.0"
sha256 arm: "0fb4b42ff7c7fb041c7c03494b1c73d1e085b9d15bf0cbc12af0476f15b8d94a",
intel: "27d77d4495cfad30e559762ef8088a09641704b0b75964f2107096f4046e0e88"
url "https://download.springsource.com/release/STS#{version.major}/#{version.csv.first}.RELEASE/dist/e#{version.csv.second.major_minor}/spring-tool-suite-#{version.major}-#{version.csv.first}.RELEASE-e#{version.csv.second}-macosx.cocoa.#{arch}.dmg",
verified: "download.springsource.com/release/"
name "Spring Tool Suite"
desc "Next generation tooling for Spring Boot"
homepage "https://spring.io/tools"
livecheck do
url :homepage
strategy :page_match do |page|
match = page.match(
%r{href=.*?/spring-tool-suite-\d+-(\d+(?:\.\d+)+)\.RELEASE-e(\d+(?:\.\d+)+)-macosx\.cocoa\.#{arch}\.dmg}i,
)
next if match.blank?
"#{match[1]},#{match[2]}"
end
end
auto_updates true
app "SpringToolSuite#{version.major}.app"
zap trash: [
"~/Library/Preferences/org.springframework.boot.ide.branding.sts#{version.major}.plist",
"~/Library/Saved Application State/org.springframework.boot.ide.branding.sts#{version.major}.savedState",
]
end