homebrew-cask/Casks/o/osp-tracker.rb

29 lines
928 B
Ruby

cask "osp-tracker" do
version "6.1.5"
sha256 "0111d928b289cfd9c569144f5c243fe19e0348ded2b1df5ff6214c039f2ce31a"
url "https://physlets.org/tracker/installers/download.php?file=Tracker-#{version}-osx-installer.dmg"
name "Tracker"
desc "Video analysis and modeling tool for physics education"
homepage "https://physlets.org/tracker/"
livecheck do
url :homepage
regex(/href=.*?file=Tracker[._-]v?(\d+(?:\.\d+)+)-osx-installer\.dmg/i)
end
installer script: {
executable: "Tracker-#{version}-osx-installer.app/Contents/MacOS/installbuilder.sh",
args: ["--mode", "unattended"],
sudo: true,
}
uninstall script: {
executable: "/usr/local/tracker/uninstall_Tracker.app/Contents/MacOS/installbuilder.sh",
args: ["--mode", "unattended"],
sudo: true,
}
zap trash: "~/Library/Saved Application State/org.opensourcephysics.cabrillo.tracker.savedState"
end