homebrew-cask/Casks/geogebra.rb

33 lines
1.1 KiB
Ruby

cask "geogebra" do
version "6.0.764.0"
sha256 "cbc2b2fd4d6d9189ec79841e5b46e3fbc8398dbed7f6da4a993a29e5c1c217b1"
url "https://download.geogebra.org/installers/#{version.major_minor}/GeoGebra-Classic-#{version.major}-MacOS-Portable-#{version.dots_to_hyphens}.zip"
name "GeoGebra"
desc "Solve, save and share math problems, graph functions, etc"
homepage "https://www.geogebra.org/"
livecheck do
url "https://download.geogebra.org/package/mac-port"
strategy :header_match do |headers|
v = headers["location"][%r{/GeoGebra-Classic-\d+-MacOS-Portable-(\d+(?:-\d+)+)\.zip}i, 1]
next if v.blank?
v.tr("-", ".")
end
end
app "GeoGebra Classic #{version.major}.app"
uninstall quit: "org.geogebra.mathapps",
login_item: "GeoGebra",
pkgutil: "org.geogebra6.mac"
zap trash: [
"~/Library/GeoGebra",
"~/Library/Preferences/org.geogebra.mathapps.helper.plist",
"~/Library/Preferences/org.geogebra.mathapps.plist",
"~/Library/Saved Application State/org.geogebra.mathapps.savedState",
]
end