diff options
| author | adrianrego | 2010-10-26 21:18:23 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-27 11:57:07 -0700 |
| commit | 56dc67aa596fc15c411e28e7990cad0809a07aca (patch) | |
| tree | 90caed16f517b9ee64be4d9e42d84e077a333332 /Library/Formula/cgal.rb | |
| parent | 01cf7105b773c6c0d8fca77d290f247fc203ef8a (diff) | |
| download | homebrew-56dc67aa596fc15c411e28e7990cad0809a07aca.tar.bz2 | |
updated CGAL to 3.7 and added --imaging option
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/cgal.rb')
| -rw-r--r-- | Library/Formula/cgal.rb | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/Library/Formula/cgal.rb b/Library/Formula/cgal.rb index 92bd43d20..10b76510c 100644 --- a/Library/Formula/cgal.rb +++ b/Library/Formula/cgal.rb @@ -1,18 +1,29 @@ require 'formula' class Cgal <Formula - url 'https://gforge.inria.fr/frs/download.php/26688/CGAL-3.6.tar.gz' - md5 '78dbaf85df0a53ca0e87308d9cbf671e' + url 'https://gforge.inria.fr/frs/download.php/27641/CGAL-3.7.tar.gz' + md5 '0e4c17f436ec04848abc3273bb6ab3ee' homepage 'http://www.cgal.org/' depends_on 'cmake' => :build depends_on 'boost' depends_on 'gmp' depends_on 'mpfr' - depends_on 'qt' => :optional + + depends_on 'qt' if ARGV.include? '--imaging' + + def options + [['--imaging', "Build ImageIO and QT compoments of CGAL"]] + end def install - system "cmake", ".", "-DCMAKE_INSTALL_PREFIX=#{prefix}", "-DCMAKE_BUILD_TYPE=Release" + 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 + + system "cmake", ".", *args system "make install" end end |
