homebrew-core/Formula/cgal.rb
2018-03-15 14:44:06 +01:00

88 lines
2.8 KiB
Ruby

class Cgal < Formula
desc "Computational Geometry Algorithm Library"
homepage "https://www.cgal.org/"
url "https://github.com/CGAL/cgal/releases/download/releases/CGAL-4.11.1/CGAL-4.11.1.tar.xz"
sha256 "fb152fc30f007e5911922913f8dc38e0bb969b534373ca0fbe85b4d872300e8b"
bottle do
cellar :any
rebuild 1
sha256 "920a76fb9d6819cea0d8ca6c1e73539fceac1bba745b64748d881654052d504f" => :high_sierra
sha256 "979289bb481185a4eff6e23f611135e621de187066a4bb04ca41ac3782d5d81d" => :sierra
sha256 "fbc33a19d551d6996919117223f3343610e3b24cb9a88dbe6e1e2c5eec584554" => :el_capitan
end
devel do
url "https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.12-beta1/CGAL-4.12-beta1.tar.xz"
sha256 "32e877c60b4027c9daf9dd9c8c8359097e333327d06fe18d3768bb80e89183db"
end
option "with-eigen", "Build with Eigen3 support"
option "with-lapack", "Build with LAPACK support"
option "with-qt", "Build ImageIO and Qt components of CGAL"
deprecated_option "imaging" => "with-qt"
deprecated_option "with-imaging" => "with-qt"
deprecated_option "with-eigen3" => "with-eigen"
deprecated_option "with-qt5" => "with-qt"
depends_on "cmake" => :build
depends_on "boost"
depends_on "gmp"
depends_on "mpfr"
depends_on "qt" => :optional
depends_on "eigen" => :optional
def install
args = std_cmake_args + %W[
-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON
-DCMAKE_INSTALL_NAME_DIR=#{HOMEBREW_PREFIX}/lib
]
if build.without? "qt"
args << "-DWITH_CGAL_Qt5=OFF" << "-DWITH_CGAL_ImageIO=OFF"
else
args << "-DWITH_CGAL_Qt5=ON" << "-DWITH_CGAL_ImageIO=ON"
end
if build.with? "eigen"
args << "-DWITH_Eigen3=ON"
else
args << "-DWITH_Eigen3=OFF"
end
if build.with? "lapack"
args << "-DWITH_LAPACK=ON"
else
args << "-DWITH_LAPACK=OFF"
end
system "cmake", ".", *args
system "make", "install"
end
test do
# https://doc.cgal.org/latest/Algebraic_foundations/Algebraic_foundations_2interoperable_8cpp-example.html
(testpath/"surprise.cpp").write <<~EOS
#include <CGAL/basic.h>
#include <CGAL/Coercion_traits.h>
#include <CGAL/IO/io.h>
template <typename A, typename B>
typename CGAL::Coercion_traits<A,B>::Type
binary_func(const A& a , const B& b){
typedef CGAL::Coercion_traits<A,B> CT;
CGAL_static_assertion((CT::Are_explicit_interoperable::value));
typename CT::Cast cast;
return cast(a)*cast(b);
}
int main(){
std::cout<< binary_func(double(3), int(5)) << std::endl;
std::cout<< binary_func(int(3), double(5)) << std::endl;
return 0;
}
EOS
system ENV.cxx, "-I#{include}", "-L#{lib}", "-lCGAL",
"surprise.cpp", "-o", "test"
assert_equal "15\n15", shell_output("./test").chomp
end
end