-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from olive-editor/otio
Add OpenTimelineIO
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |