homebrew-core/Formula/pcl.rb

128 lines
3.9 KiB
Ruby

class Pcl < Formula
desc "Library for 2D/3D image and point cloud processing"
homepage "https://pointclouds.org/"
license "BSD-3-Clause"
revision 8
stable do
url "https://github.com/PointCloudLibrary/pcl/archive/pcl-1.11.1.tar.gz"
sha256 "a61558e53abafbc909e0996f91cfd2d7a400fcadf6b8cfb0ea3172b78422c74e"
# VTK 9 will be supported in PCL 1.12.
depends_on "vtk@8.2"
end
bottle do
rebuild 1
sha256 cellar: :any, arm64_big_sur: "6ba5d120dd629c8fe294cfcfd75817024935e4901807732ec3ecb4404430ca63"
sha256 cellar: :any, big_sur: "e26ac7c25e8d1cd5581b0c25a4a5abcfdc49938784696f988c606cd4248294a8"
sha256 cellar: :any, catalina: "4c25e37d19f4f7e300be112a6ef5dcfeaa9523b1e4aa0457a4873e478663dc54"
sha256 cellar: :any, mojave: "ee7e82622e783b380752ed27eeb65f6a33bc843c30a633c73bde7db2a5f3a304"
end
head do
url "https://github.com/PointCloudLibrary/pcl.git"
depends_on "vtk"
end
depends_on "cmake" => [:build, :test]
depends_on "pkg-config" => [:build, :test]
depends_on "boost"
depends_on "cminpack"
depends_on "eigen"
depends_on "flann"
depends_on "glew"
depends_on "libomp"
depends_on "libpcap"
depends_on "libusb"
depends_on "qhull"
depends_on "qt@5"
def install
args = std_cmake_args + %w[
-DBUILD_SHARED_LIBS:BOOL=ON
-DBUILD_apps=AUTO_OFF
-DBUILD_apps_3d_rec_framework=AUTO_OFF
-DBUILD_apps_cloud_composer=AUTO_OFF
-DBUILD_apps_in_hand_scanner=AUTO_OFF
-DBUILD_apps_point_cloud_editor=AUTO_OFF
-DBUILD_examples:BOOL=OFF
-DBUILD_global_tests:BOOL=OFF
-DBUILD_outofcore:BOOL=AUTO_OFF
-DBUILD_people:BOOL=AUTO_OFF
-DBUILD_simulation:BOOL=ON
-DWITH_CUDA:BOOL=OFF
-DWITH_DOCS:BOOL=OFF
-DWITH_TUTORIALS:BOOL=OFF
]
args << if build.head?
"-DBUILD_apps_modeler=AUTO_OFF"
else
"-DBUILD_apps_modeler:BOOL=OFF"
end
mkdir "build" do
system "cmake", "..", *args
system "make", "install"
prefix.install Dir["#{bin}/*.app"]
end
end
test do
assert_match "tiff files", shell_output("#{bin}/pcl_tiff2pcd -h", 255)
# inspired by https://pointclouds.org/documentation/tutorials/writing_pcd.html
(testpath/"CMakeLists.txt").write <<~EOS
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
project(pcd_write)
find_package(PCL 1.2 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
add_executable (pcd_write pcd_write.cpp)
target_link_libraries (pcd_write ${PCL_LIBRARIES})
EOS
(testpath/"pcd_write.cpp").write <<~EOS
#include <iostream>
#include <pcl/io/pcd_io.h>
#include <pcl/point_types.h>
int main (int argc, char** argv)
{
pcl::PointCloud<pcl::PointXYZ> cloud;
// Fill in the cloud data
cloud.width = 2;
cloud.height = 1;
cloud.is_dense = false;
cloud.points.resize (cloud.width * cloud.height);
int i = 1;
for (auto& point: cloud)
{
point.x = i++;
point.y = i++;
point.z = i++;
}
pcl::io::savePCDFileASCII ("test_pcd.pcd", cloud);
return (0);
}
EOS
mkdir "build" do
# the following line is needed to workaround a bug in test-bot
# (Homebrew/homebrew-test-bot#544) when bumping the boost
# revision without bumping this formula's revision as well
ENV.prepend_path "PKG_CONFIG_PATH", Formula["eigen"].opt_share/"pkgconfig"
system "cmake", "..", "-DGLEW_DIR=#{Formula["glew"].opt_lib}/cmake/glew", *std_cmake_args
system "make"
system "./pcd_write"
assert_predicate (testpath/"build/test_pcd.pcd"), :exist?
output = File.read("test_pcd.pcd")
assert_match "POINTS 2", output
assert_match "1 2 3", output
assert_match "4 5 6", output
end
end
end