Files
homebrew-cask/Casks/w/webots.rb
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

31 lines
825 B
Ruby

cask "webots" do
version "R2023b"
sha256 "6fe4638f28bd5ca9fc0c4c910dbe4bae835497a3186df11c42f0665f802f82e4"
url "https://github.com/cyberbotics/webots/releases/download/#{version}/webots-#{version}.dmg",
verified: "github.com/cyberbotics/webots/"
name "Cyberbotics Webots Robot Simulator"
name "Webots"
desc "Open source desktop application used to simulate robots"
homepage "https://www.cyberbotics.com/"
livecheck do
url :url
regex(/([\w._-]+)/i)
strategy :github_latest
end
auto_updates true
depends_on macos: ">= :mojave"
app "Webots.app"
uninstall quit: "com.cyberbotics.webots"
zap trash: [
"~/Library/Application Support/Cyberbotics/Webots",
"~/Library/Caches/Cyberbotics/Webots",
"~/Library/Preferences/com.cyberbotics.Webots-#{version}.plist",
]
end