cask "geogebra@5" do version "5.2.892.0" sha256 "65d5d75f35ee8fd43a38b730e6a524900ef9d643fa99b9822a2b19eccd03b985" url "https://download.geogebra.org/installers/#{version.major_minor}/GeoGebra-MacOS-Installer-withJava-#{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" regex(%r{/GeoGebra[._-]MacOS[._-]Installer[._-]withJava[._-]v?(\d+(?:-\d+)+)\.zip}i) strategy :header_match do |headers, regex| match = headers["location"]&.match(regex) next if match.blank? match[1].tr("-", ".") end end app "Geogebra.app" uninstall quit: "org.geogebra#{version.major}.mac", login_item: "Geogebra" zap trash: "~/Library/Saved Application State/org.geogebra5.mac.savedState" end