151 lines
4.7 KiB
Ruby
151 lines
4.7 KiB
Ruby
class Opencv < Formula
|
|
desc "Open source computer vision library"
|
|
homepage "https://opencv.org/"
|
|
url "https://github.com/opencv/opencv/archive/4.5.4.tar.gz"
|
|
sha256 "c20bb83dd790fc69df9f105477e24267706715a9d3c705ca1e7f613c7b3bad3d"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "8d9f4678fe2debce9add50b89be5adaf3b1241ea6d45d8ddb560a61a9f68d65c"
|
|
sha256 arm64_big_sur: "5bc7db3fe6660b8e975485d78f3c4c70144ec560d7b8f04f70a494a3846875ad"
|
|
sha256 big_sur: "fcbb0f11527ce3811a7c80a747176b7769bf36b7dc3b5180b27c9216d4afa532"
|
|
sha256 catalina: "ab08161f955da7cdd13e47a3714cb815d8317b87919123445865f16aa8f1d49d"
|
|
sha256 x86_64_linux: "e3f3a86ed2c245cde6ef6ec6407eeba14c00449b6441f9dac150bed65e653374"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "ceres-solver"
|
|
depends_on "eigen"
|
|
depends_on "ffmpeg"
|
|
depends_on "glog"
|
|
depends_on "harfbuzz"
|
|
depends_on "jpeg"
|
|
depends_on "libpng"
|
|
depends_on "libtiff"
|
|
depends_on "numpy"
|
|
depends_on "openblas"
|
|
depends_on "openexr"
|
|
depends_on "protobuf"
|
|
depends_on "python@3.9"
|
|
depends_on "tbb"
|
|
depends_on "vtk"
|
|
depends_on "webp"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
resource "contrib" do
|
|
url "https://github.com/opencv/opencv_contrib/archive/4.5.4.tar.gz"
|
|
sha256 "ad74b440b4539619dc9b587995a16b691246023d45e34097c73e259f72de9f81"
|
|
end
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
resource("contrib").stage buildpath/"opencv_contrib"
|
|
|
|
# Avoid Accelerate.framework
|
|
ENV["OpenBLAS_HOME"] = Formula["openblas"].opt_prefix
|
|
|
|
# Reset PYTHONPATH, workaround for https://github.com/Homebrew/homebrew-science/pull/4885
|
|
ENV.delete("PYTHONPATH")
|
|
|
|
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_PROTOBUF=OFF
|
|
-DBUILD_TESTS=OFF
|
|
-DBUILD_TIFF=OFF
|
|
-DBUILD_WEBP=OFF
|
|
-DBUILD_ZLIB=OFF
|
|
-DBUILD_opencv_hdf=OFF
|
|
-DBUILD_opencv_java=OFF
|
|
-DBUILD_opencv_text=ON
|
|
-DOPENCV_ENABLE_NONFREE=ON
|
|
-DOPENCV_EXTRA_MODULES_PATH=#{buildpath}/opencv_contrib/modules
|
|
-DOPENCV_GENERATE_PKGCONFIG=ON
|
|
-DPROTOBUF_UPDATE_FILES=ON
|
|
-DWITH_1394=OFF
|
|
-DWITH_CUDA=OFF
|
|
-DWITH_EIGEN=ON
|
|
-DWITH_FFMPEG=ON
|
|
-DWITH_GPHOTO2=OFF
|
|
-DWITH_GSTREAMER=OFF
|
|
-DWITH_JASPER=OFF
|
|
-DWITH_OPENEXR=ON
|
|
-DWITH_OPENGL=OFF
|
|
-DWITH_QT=OFF
|
|
-DWITH_TBB=ON
|
|
-DWITH_VTK=ON
|
|
-DBUILD_opencv_python2=OFF
|
|
-DBUILD_opencv_python3=ON
|
|
-DPYTHON3_EXECUTABLE=#{Formula["python@3.9"].opt_bin}/python3
|
|
]
|
|
|
|
# Disable precompiled headers and force opencv to use brewed libraries on Linux
|
|
if OS.linux?
|
|
args << "-DENABLE_PRECOMPILED_HEADERS=OFF"
|
|
args << "-DJPEG_LIBRARY=#{Formula["libjpeg"].opt_lib}/libjpeg.so"
|
|
args << "-DOpenBLAS_LIB=#{Formula["openblas"].opt_lib}/libopenblas.so"
|
|
args << "-DOPENEXR_ILMIMF_LIBRARY=#{Formula["openexr"].opt_lib}/libIlmImf.so"
|
|
args << "-DOPENEXR_ILMTHREAD_LIBRARY=#{Formula["openexr"].opt_lib}/libIlmThread.so"
|
|
args << "-DPNG_LIBRARY=#{Formula["libpng"].opt_lib}/libpng.so"
|
|
args << "-DPROTOBUF_LIBRARY=#{Formula["protobuf"].opt_lib}/libprotobuf.so"
|
|
args << "-DTIFF_LIBRARY=#{Formula["libtiff"].opt_lib}/libtiff.so"
|
|
args << "-DWITH_V4L=OFF"
|
|
args << "-DZLIB_LIBRARY=#{Formula["zlib"].opt_lib}/libz.so"
|
|
end
|
|
|
|
if Hardware::CPU.intel?
|
|
args << "-DENABLE_AVX=OFF" << "-DENABLE_AVX2=OFF"
|
|
args << "-DENABLE_SSE41=OFF" << "-DENABLE_SSE42=OFF" unless MacOS.version.requires_sse42?
|
|
end
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
inreplace "modules/core/version_string.inc", Superenv.shims_path, ""
|
|
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
system "make", "clean"
|
|
system "cmake", "..", "-DBUILD_SHARED_LIBS=OFF", *args
|
|
inreplace "modules/core/version_string.inc", Superenv.shims_path, ""
|
|
|
|
system "make"
|
|
lib.install Dir["lib/*.a"]
|
|
lib.install Dir["3rdparty/**/*.a"]
|
|
end
|
|
|
|
# Prevent dependents from using fragile Cellar paths
|
|
inreplace lib/"pkgconfig/opencv#{version.major}.pc", prefix, opt_prefix
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <opencv2/opencv.hpp>
|
|
#include <iostream>
|
|
int main() {
|
|
std::cout << CV_VERSION << std::endl;
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-I#{include}/opencv4",
|
|
"-o", "test"
|
|
assert_equal `./test`.strip, version.to_s
|
|
|
|
output = shell_output(Formula["python@3.9"].opt_bin/"python3 -c 'import cv2; print(cv2.__version__)'")
|
|
assert_equal version.to_s, output.chomp
|
|
end
|
|
end
|