aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-08-25 23:29:51 -0700
committerAdam Vandenberg2012-08-25 23:29:51 -0700
commit4e088984186f199677389ce1f0da16a84c8e1e6d (patch)
treeb458d3905b39d8058fbb1446ef50be803a581409 /Library/Formula
parent8e33c3223ef77b7bcc5d74e617a74e4f9b919aa2 (diff)
downloadhomebrew-4e088984186f199677389ce1f0da16a84c8e1e6d.tar.bz2
cgal: use new dsl
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cgal.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/cgal.rb b/Library/Formula/cgal.rb
index 4d5b750b6..aa8fb8154 100644
--- a/Library/Formula/cgal.rb
+++ b/Library/Formula/cgal.rb
@@ -5,23 +5,21 @@ class Cgal < Formula
url 'https://gforge.inria.fr/frs/download.php/31175/CGAL-4.0.2.tar.gz'
sha1 'e80af4b1da25690df63ce83dd083710cc3db9697'
+ option 'imaging', "Build ImageIO and QT compoments of CGAL"
+
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
+ depends_on 'qt' if build.include? 'imaging'
def install
args = ["-DCMAKE_INSTALL_PREFIX=#{prefix}",
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON",
"-DCMAKE_INSTALL_NAME_DIR=#{HOMEBREW_PREFIX}/lib"]
- unless ARGV.include? '--imaging'
+ unless build.include? 'imaging'
args << "-DWITH_CGAL_Qt3=OFF" << "-DWITH_CGAL_Qt4=OFF" << "-DWITH_CGAL_ImageIO=OFF"
end
args << '.'