2010-06-24 03:49:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cgal < Formula
|
2012-02-22 05:12:27 +00:00
|
|
|
homepage 'http://www.cgal.org/'
|
2012-07-04 16:10:39 +00:00
|
|
|
url 'https://gforge.inria.fr/frs/download.php/31175/CGAL-4.0.2.tar.gz'
|
|
|
|
sha1 'e80af4b1da25690df63ce83dd083710cc3db9697'
|
2010-06-24 03:49:22 +00:00
|
|
|
|
2012-08-26 06:29:51 +00:00
|
|
|
option 'imaging', "Build ImageIO and QT compoments of CGAL"
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
2010-06-24 03:49:22 +00:00
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'gmp'
|
|
|
|
depends_on 'mpfr'
|
2010-10-27 01:18:23 +00:00
|
|
|
|
2012-08-26 06:29:51 +00:00
|
|
|
depends_on 'qt' if build.include? 'imaging'
|
2010-06-24 03:49:22 +00:00
|
|
|
|
|
|
|
def install
|
2011-12-31 04:01:16 +00:00
|
|
|
args = ["-DCMAKE_INSTALL_PREFIX=#{prefix}",
|
|
|
|
"-DCMAKE_BUILD_TYPE=Release",
|
|
|
|
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON",
|
|
|
|
"-DCMAKE_INSTALL_NAME_DIR=#{HOMEBREW_PREFIX}/lib"]
|
2012-08-26 06:29:51 +00:00
|
|
|
unless build.include? 'imaging'
|
2010-10-27 01:18:23 +00:00
|
|
|
args << "-DWITH_CGAL_Qt3=OFF" << "-DWITH_CGAL_Qt4=OFF" << "-DWITH_CGAL_ImageIO=OFF"
|
|
|
|
end
|
2011-10-27 18:23:23 +00:00
|
|
|
args << '.'
|
|
|
|
system "cmake", *args
|
2010-06-24 03:49:22 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|