mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
789 B
Ruby
24 lines
789 B
Ruby
cask "understand" do
|
|
version "6.5.1162"
|
|
sha256 "12ba7911503f79f8ad026fe8b3a1ce6d3864124c3511dabb1dcbbcca1f45ab4a"
|
|
|
|
url "https://latest.scitools.com/Understand/Understand-#{version}-macOS-Universal.dmg"
|
|
name "SciTools Understand"
|
|
desc "Code visualization and exploration tool"
|
|
homepage "https://scitools.com/features"
|
|
|
|
livecheck do
|
|
url "https://licensing.scitools.com/download/thanks/macOS-Universal.dmg"
|
|
regex(/Understand[._-]v?(\d+(?:\.\d+)+)[._-]macOS[._-]Universal\.dmg/i)
|
|
end
|
|
|
|
app "Understand.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/SciTools",
|
|
"~/Library/Preferences/com.scitools.License.plist",
|
|
"~/Library/Preferences/com.scitools.Understand.plist",
|
|
"~/Library/Saved Application State/com.scitools.Understand.savedState",
|
|
]
|
|
end
|