opencolorio: drop java option

This commit is contained in:
Dominyk Tiller 2018-02-06 08:41:33 +00:00 committed by ilovezfs
parent 2c80ef72fa
commit 8fe74fb536

View file

@ -13,7 +13,6 @@ class Opencolorio < Formula
end
option "with-test", "Verify the build with its unit tests (~1min)"
option "with-java", "Build ocio with java bindings"
option "with-docs", "Build the documentation"
deprecated_option "with-tests" => "with-test"
@ -25,7 +24,6 @@ class Opencolorio < Formula
def install
args = std_cmake_args
args << "-DOCIO_BUILD_JNIGLUE=ON" if build.with? "java"
args << "-DOCIO_BUILD_TESTS=ON" if build.with? "test"
args << "-DOCIO_BUILD_DOCS=ON" if build.with? "docs"
args << "-DCMAKE_VERBOSE_MAKEFILE=OFF"