homebrew-core/Formula/cgal.rb
Nibbles 2bits c1912a7af5 cgal 3.9
This commit updates cgal to version 3.9 and adjusts the syntax to
follow cmake usage: cmake [options] <path-to-source>
This compiles on 64bit Snow Leopard using XCode-4.0.2 using clang,
llvm-2335, and gcc-4.2.1.5666.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-10-29 10:53:24 -07:00

28 lines
725 B
Ruby

require 'formula'
class Cgal < Formula
url 'https://gforge.inria.fr/frs/download.php/29125/CGAL-3.9.tar.gz'
sha1 'cc99fad7116f221b6301326834f71ff65cebf2eb'
homepage 'http://www.cgal.org/'
depends_on 'cmake' => :build
depends_on 'boost'
depends_on 'gmp'
depends_on 'mpfr'
depends_on 'qt' if ARGV.include? '--imaging'
def options
[['--imaging', "Build ImageIO and QT compoments of CGAL"]]
end
def install
args = ["-DCMAKE_INSTALL_PREFIX=#{prefix}", "-DCMAKE_BUILD_TYPE=Release"]
unless ARGV.include? '--imaging'
args << "-DWITH_CGAL_Qt3=OFF" << "-DWITH_CGAL_Qt4=OFF" << "-DWITH_CGAL_ImageIO=OFF"
end
args << '.'
system "cmake", *args
system "make install"
end
end