mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
855 B
Ruby
26 lines
855 B
Ruby
cask "carbide-create" do
|
|
version "764"
|
|
sha256 "3f4dae5bd30826b93d7d6bb85291e39d406218bac06e70e4bee40200a5abf6c6"
|
|
|
|
url "https://carbide-downloads.website-us-east-1.linodeobjects.com/cc/stable/#{version}/CarbideCreate-#{version}.dmg",
|
|
verified: "carbide-downloads.website-us-east-1.linodeobjects.com/"
|
|
name "Carbide Create"
|
|
desc "CAD/CAM software for CNC routers"
|
|
homepage "https://carbide3d.com/carbidecreate/"
|
|
|
|
livecheck do
|
|
url "https://carbide-downloads.website-us-east-1.linodeobjects.com/builds.json"
|
|
strategy :json do |json|
|
|
json["cc"]["stable"]["osx"]["build"].to_s
|
|
end
|
|
end
|
|
|
|
app "Carbide Create.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/Carbide 3D",
|
|
"~/Library/Preferences/com.carbide*.Carbide Create.plist",
|
|
"~/Library/Saved Application State/com.carbide3d.Carbide Create.savedState",
|
|
]
|
|
end
|