mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
746 B
Ruby
24 lines
746 B
Ruby
cask "spike" do
|
|
version "3.4.2"
|
|
sha256 "8bc4125601777ef932599d3f188415a319817bec0429303b0c03dd12473fbf25"
|
|
|
|
url "https://education.lego.com/_/downloads/SPIKE_APP_#{version.major}_macOS__#{version}_Global.dmg"
|
|
name "Lego SPIKE"
|
|
desc "Develop with Scratch and Python for your LEGO Spike set"
|
|
homepage "https://education.lego.com/"
|
|
|
|
livecheck do
|
|
url "https://education.lego.com/page-data/en-au/downloads/spike-app/software/page-data.json"
|
|
regex(/SPIKE[._-]APP[._-]\d+[._-]macOS[._-]+v?(\d+(?:\.\d+)+)[._-]Global\.dmg/i)
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Spike.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.lego.education.spikenext",
|
|
"~/Library/Containers/com.lego.education.spikenext",
|
|
]
|
|
end
|