mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
689 B
Ruby
31 lines
689 B
Ruby
cask "spyder" do
|
|
version "5.5.0"
|
|
sha256 "522ab177d2803843faeb9c11d59489df23be81c29491a69a5b6db879fa253f8b"
|
|
|
|
url "https://github.com/spyder-ide/spyder/releases/download/v#{version}/Spyder.dmg",
|
|
verified: "github.com/spyder-ide/spyder/"
|
|
name "Spyder"
|
|
desc "Scientific Python IDE"
|
|
homepage "https://www.spyder-ide.org/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Spyder.app"
|
|
|
|
zap trash: [
|
|
"~/.spyder-py3",
|
|
"~/Library/Application Support/Spyder",
|
|
"~/Library/Caches/Spyder",
|
|
"~/Library/Saved Application State/org.spyder-ide.Spyder.savedState",
|
|
]
|
|
|
|
caveats do
|
|
requires_rosetta
|
|
end
|
|
end
|