97 lines
2.9 KiB
Ruby
97 lines
2.9 KiB
Ruby
class OpencvAT2 < Formula
|
|
desc "Open source computer vision library"
|
|
homepage "https://opencv.org/"
|
|
url "https://github.com/opencv/opencv/archive/2.4.13.4.tar.gz"
|
|
sha256 "f8abf1fcc2da3bb1deac8776f07b8390f871372e2a44dc355c765dd379194481"
|
|
|
|
bottle do
|
|
sha256 "5604daf2cbb63923b5bcfed984a797bbe48bf915b7272c8588429ed8bf7c65bf" => :high_sierra
|
|
sha256 "a6c8afdcf22606be32b1c0d30a6c1f4e1b9534c029646f583e30efdd7087d898" => :sierra
|
|
sha256 "b52943718bb79e438d4c0cf695c59b27a17358672553f27182a614a4fe950b3e" => :el_capitan
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
option "without-python", "Build without python2 support"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "eigen"
|
|
depends_on "ffmpeg"
|
|
depends_on "jpeg"
|
|
depends_on "libpng"
|
|
depends_on "libtiff"
|
|
depends_on "openexr"
|
|
depends_on :python => :recommended if MacOS.version <= :snow_leopard
|
|
depends_on "numpy" if build.with? "python"
|
|
|
|
def install
|
|
jpeg = Formula["jpeg"]
|
|
|
|
args = std_cmake_args + %W[
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=
|
|
-DBUILD_JASPER=OFF
|
|
-DBUILD_JPEG=OFF
|
|
-DBUILD_OPENEXR=OFF
|
|
-DBUILD_PERF_TESTS=OFF
|
|
-DBUILD_PNG=OFF
|
|
-DBUILD_TESTS=OFF
|
|
-DBUILD_TIFF=OFF
|
|
-DBUILD_ZLIB=OFF
|
|
-DBUILD_opencv_java=OFF
|
|
-DWITH_CUDA=OFF
|
|
-DWITH_EIGEN=ON
|
|
-DWITH_FFMPEG=ON
|
|
-DWITH_GSTREAMER=OFF
|
|
-DWITH_JASPER=OFF
|
|
-DWITH_OPENEXR=ON
|
|
-DWITH_OPENGL=ON
|
|
-DWITH_TBB=OFF
|
|
-DJPEG_INCLUDE_DIR=#{jpeg.opt_include}
|
|
-DJPEG_LIBRARY=#{jpeg.opt_lib}/libjpeg.dylib
|
|
]
|
|
|
|
args << "-DBUILD_opencv_python=" + (build.with?("python") ? "ON" : "OFF")
|
|
|
|
if build.with? "python"
|
|
py_prefix = `python-config --prefix`.chomp
|
|
py_lib = "#{py_prefix}/lib"
|
|
args << "-DPYTHON_LIBRARY=#{py_lib}/libpython2.7.dylib"
|
|
args << "-DPYTHON_INCLUDE_DIR=#{py_prefix}/include/python2.7"
|
|
|
|
# Make sure find_program locates system Python
|
|
# https://github.com/Homebrew/homebrew-science/issues/2302
|
|
args << "-DCMAKE_PREFIX_PATH=#{py_prefix}"
|
|
end
|
|
|
|
if ENV.compiler == :clang && !build.bottle?
|
|
args << "-DENABLE_SSSE3=ON" if Hardware::CPU.ssse3?
|
|
args << "-DENABLE_SSE41=ON" if Hardware::CPU.sse4?
|
|
args << "-DENABLE_SSE42=ON" if Hardware::CPU.sse4_2?
|
|
args << "-DENABLE_AVX=ON" if Hardware::CPU.avx?
|
|
end
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <opencv/cv.h>
|
|
#include <iostream>
|
|
int main() {
|
|
std::cout << CV_VERSION << std::endl;
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-I#{include}", "-L#{lib}", "-o", "test"
|
|
assert_equal version.to_s, shell_output("./test").strip
|
|
|
|
ENV["PYTHONPATH"] = lib/"python2.7/site-packages"
|
|
assert_match version.to_s,
|
|
shell_output("python -c 'import cv2; print(cv2.__version__)'")
|
|
end
|
|
end
|