Skip to content

Commit 4b15584

Browse files
committed
openmoonray 1.2.0.0 (new formula)
1 parent 7fa22b4 commit 4b15584

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Formula/openmoonray.rb

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
class Openmoonray < Formula
2+
desc "DreamWorks’ production MCRT renderer"
3+
homepage "https://openmoonray.org"
4+
url "https://github.com/dreamworksanimation/openmoonray.git",
5+
tag: "v1.2.0.0",
6+
revision: "a212d261df2f9b198baf40c96fc53f6a87c56414"
7+
license "Apache-2.0"
8+
9+
depends_on "cmake" => :build
10+
depends_on "boost"
11+
depends_on "cppunit"
12+
depends_on "jsoncpp"
13+
depends_on "libmicrohttpd"
14+
depends_on "openimageio"
15+
16+
def install
17+
system "cmake", "-S", ".", "-B", "build", *std_cmake_args, "-DBUILD_QT_APPS=NO"
18+
system "cmake", "--build", "build"
19+
system "cmake", "--install", "build"
20+
end
21+
22+
test do
23+
system "false"
24+
end
25+
end

0 commit comments

Comments
 (0)