mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
cask "natron" do
|
|
version "2.5.0"
|
|
|
|
on_mojave :or_older do
|
|
sha256 "4bf8ce890fe51446c01fc8480e8159cd559cfaac2445eae1699ae1718121fa7a"
|
|
|
|
url "https://github.com/NatronGitHub/Natron/releases/download/v#{version}/Natron-#{version}-OSX109-x86_64.dmg",
|
|
verified: "github.com/NatronGitHub/Natron/"
|
|
end
|
|
on_catalina do
|
|
sha256 "1c97a1f373c3adcdbb933f20b02d0ebd4d7737d44e5344a372bd7b9e5211860e"
|
|
|
|
url "https://github.com/NatronGitHub/Natron/releases/download/v#{version}/Natron-#{version}-macOS1015-x86_64.dmg",
|
|
verified: "github.com/NatronGitHub/Natron/"
|
|
end
|
|
on_big_sur :or_newer do
|
|
sha256 "aa31fb6963344c281b53ca6e93823885e09f7d115ed5cc311abb833de4647537"
|
|
|
|
url "https://github.com/NatronGitHub/Natron/releases/download/v#{version}/Natron-#{version}-macOS12-x86_64.dmg",
|
|
verified: "github.com/NatronGitHub/Natron/"
|
|
end
|
|
|
|
name "Natron"
|
|
desc "Open-source node-graph based video compositing software"
|
|
homepage "https://NatronGitHub.github.io/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Natron.app"
|
|
end
|