class Visp < Formula desc "Visual Servoing Platform library" homepage "https://visp.inria.fr/" url "https://visp-doc.inria.fr/download/releases/visp-3.5.0.tar.gz" sha256 "494a648b2570da2a200ba326ed61a14e785eb9ee08ef12d3ad178b2f384d3d30" license "GPL-2.0-or-later" livecheck do url "https://visp.inria.fr/download/" regex(/href=.*?visp[._-]v?(\d+(?:\.\d+)+)\.t/i) end bottle do sha256 cellar: :any, arm64_monterey: "dadc153906af7eb04c01727e3b436386ad00a10d8a53b2fee51e0cdecd3fe713" sha256 cellar: :any, arm64_big_sur: "1683fbf266ffe3a1e0df444f75f98676bd40df91ff6ac049e11589867a90be90" sha256 cellar: :any, big_sur: "0b1fade400f526662f98cce032280c499505a2d45696d60aec8f3fc22eba419b" sha256 cellar: :any, catalina: "fa9d5947388eb1ddf05637daa09bc4fc2a659fd369989829dcb7b6e4dfb8b75e" end depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "eigen" depends_on "gsl" depends_on "jpeg" depends_on "libdc1394" depends_on "libpng" depends_on "opencv" depends_on "pcl" depends_on "zbar" uses_from_macos "libxml2" uses_from_macos "zlib" def install ENV.cxx11 # Avoid superenv shim references inreplace "CMakeLists.txt" do |s| s.sub!(/CMake build tool:"\s+\${CMAKE_BUILD_TOOL}/, "CMake build tool: gmake\"") s.sub!(/C\+\+ Compiler:"\s+\${VISP_COMPILER_STR}/, "C++ Compiler: clang++\"") s.sub!(/C Compiler:"\s+\${CMAKE_C_COMPILER}/, "C Compiler: clang\"") end system "cmake", ".", "-DBUILD_DEMOS=OFF", "-DBUILD_EXAMPLES=OFF", "-DBUILD_TESTS=OFF", "-DBUILD_TUTORIALS=OFF", "-DUSE_DC1394=ON", "-DDC1394_INCLUDE_DIR=#{Formula["libdc1394"].opt_include}", "-DDC1394_LIBRARY=#{Formula["libdc1394"].opt_lib}/libdc1394.dylib", "-DUSE_EIGEN3=ON", "-DEigen3_DIR=#{Formula["eigen"].opt_share}/eigen3/cmake", "-DUSE_GSL=ON", "-DGSL_INCLUDE_DIR=#{Formula["gsl"].opt_include}", "-DGSL_cblas_LIBRARY=#{Formula["gsl"].opt_lib}/libgslcblas.dylib", "-DGSL_gsl_LIBRARY=#{Formula["gsl"].opt_lib}/libgsl.dylib", "-DUSE_JPEG=ON", "-DJPEG_INCLUDE_DIR=#{Formula["jpeg"].opt_include}", "-DJPEG_LIBRARY=#{Formula["jpeg"].opt_lib}/libjpeg.dylib", "-DUSE_LAPACK=ON", "-DUSE_LIBUSB_1=OFF", "-DUSE_OPENCV=ON", "-DOpenCV_DIR=#{Formula["opencv"].opt_share}/OpenCV", "-DUSE_PCL=ON", "-DUSE_PNG=ON", "-DPNG_PNG_INCLUDE_DIR=#{Formula["libpng"].opt_include}", "-DPNG_LIBRARY_RELEASE=#{Formula["libpng"].opt_lib}/libpng.dylib", "-DUSE_PTHREAD=ON", "-DUSE_PYLON=OFF", "-DUSE_REALSENSE=OFF", "-DUSE_REALSENSE2=OFF", "-DUSE_X11=OFF", "-DUSE_XML2=ON", "-DUSE_ZBAR=ON", "-DZBAR_INCLUDE_DIRS=#{Formula["zbar"].opt_include}", "-DZBAR_LIBRARIES=#{Formula["zbar"].opt_lib}/libzbar.dylib", "-DUSE_ZLIB=ON", *std_cmake_args # Replace generated references to OpenCV's Cellar path opencv = Formula["opencv"] opencv_references = Dir[ "CMakeCache.txt", "CMakeFiles/Export/lib/cmake/visp/VISPModules.cmake", "VISPConfig.cmake", "VISPGenerateConfigScript.info.cmake", "VISPModules.cmake", "modules/**/flags.make", "unix-install/VISPConfig.cmake", ] inreplace opencv_references, opencv.prefix.realpath, opencv.opt_prefix system "make", "install" # Make sure software built against visp don't reference opencv's cellar path either inreplace lib/"pkgconfig/visp.pc", opencv.prefix.realpath, opencv.opt_prefix end test do (testpath/"test.cpp").write <<~EOS #include #include int main() { std::cout << VISP_VERSION_MAJOR << "." << VISP_VERSION_MINOR << "." << VISP_VERSION_PATCH << std::endl; return 0; } EOS system ENV.cxx, "test.cpp", "-I#{include}", "-L#{lib}", "-o", "test" assert_equal version.to_s, shell_output("./test").chomp end end