Skip to content

Commit

Permalink
Merge pull request #2 from olive-editor/otio
Browse files Browse the repository at this point in the history
Add OpenTimelineIO
  • Loading branch information
itsmattkc authored Sep 7, 2021
2 parents d7aa3a2 + 4e43637 commit 31e1fc5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Formula/opentimelineio.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
class Opentimelineio < Formula
desc "Open Source API and interchange format for editorial timeline information"
homepage "http://opentimeline.io"
url "https://github.com/PixarAnimationStudios/OpenTimelineIO.git",
tag: "v0.13",
revision: "b104129ee01fc25745ab0d7f003c03e6accd6330"
license "Apache-2.0"
head "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", branch: "master"

depends_on "cmake" => :build

def install
system "cmake", "-S", ".", "-B", "build", *std_cmake_args
system "make", "-C", "build", "install"
end

test do
# No idea if this does anything
# system "ctest", "build"
system "true"
end
end

0 comments on commit 31e1fc5

Please sign in to comment.