cask "stellarium" do on_sierra :or_older do version "0.22.2" sha256 "5e8c2ee315f8c00a393e7bd22461f9b48355538cec39e1bb771e92a5795bcfb4" url "https://github.com/Stellarium/stellarium/releases/download/v#{version}/Stellarium-#{version}-x86_64.zip", verified: "github.com/Stellarium/stellarium/" livecheck do skip "Legacy version" end end on_high_sierra do version "25.2" sha256 "f6d08ed9bc7c7272f237b78dd91eb299aac4ed9ef9c4b25a5e89f65eef2495e0" url "https://github.com/Stellarium/stellarium/releases/download/v#{version.major_minor}/Stellarium-#{version}-qt5-x86_64.zip", verified: "github.com/Stellarium/stellarium/" livecheck do url :url strategy :github_latest end end on_mojave do version "25.2" sha256 "f6d08ed9bc7c7272f237b78dd91eb299aac4ed9ef9c4b25a5e89f65eef2495e0" url "https://github.com/Stellarium/stellarium/releases/download/v#{version.major_minor}/Stellarium-#{version}-qt5-x86_64.zip", verified: "github.com/Stellarium/stellarium/" livecheck do url :url strategy :github_latest end end on_catalina do version "25.2" sha256 "f6d08ed9bc7c7272f237b78dd91eb299aac4ed9ef9c4b25a5e89f65eef2495e0" url "https://github.com/Stellarium/stellarium/releases/download/v#{version.major_minor}/Stellarium-#{version}-qt5-x86_64.zip", verified: "github.com/Stellarium/stellarium/" livecheck do url :url strategy :github_latest end end on_big_sur :or_newer do version "25.2" sha256 "9d84b159462c77d3dea5c41010c0d002c485201c48ee8005809cbcfa260f9d52" url "https://github.com/Stellarium/stellarium/releases/download/v#{version.major_minor}/Stellarium-#{version}-qt6-macOS.zip", verified: "github.com/Stellarium/stellarium/" livecheck do url :url strategy :github_latest end end name "Stellarium" desc "Tool to render realistic skies in real time on the screen" homepage "https://stellarium.org/" no_autobump! because: :requires_manual_review depends_on macos: ">= :sierra" app "Stellarium.app" zap trash: [ "~/Library/Application Support/Stellarium", "~/Library/Preferences/Stellarium", ] end