From 75013cccedc81a19e75039deb16f0e181c5f237a Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 9 Aug 2012 21:51:17 -0700 Subject: gegl: use options dsl --- Library/Formula/gegl.rb | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/gegl.rb b/Library/Formula/gegl.rb index 8ba3979e6..d13829056 100644 --- a/Library/Formula/gegl.rb +++ b/Library/Formula/gegl.rb @@ -1,28 +1,29 @@ require 'formula' class Gegl < Formula - url 'ftp://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2' homepage 'http://www.gegl.org/' + url 'ftp://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2' md5 '32b00002f1f1e316115c4ed922e1dec8' + option :universal + depends_on 'babl' depends_on 'glib' depends_on 'gettext' depends_on 'intltool' => :build depends_on 'pkg-config' => :build - def options - [ - ["--universal", "Builds a universal binary"], - ] - end - def install # ./configure breaks when optimization is enabled with llvm ENV.no_optimization if ENV.compiler == :llvm - argv = ["--disable-docs", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"] - if ARGV.build_universal? + argv = %W[ + --disable-debug + --disable-dependency-tracking + --prefix=#{prefix} + --disable-docs + ] + if build.universal? ENV.universal_binary # ffmpeg's formula is currently not universal-enabled argv << "--without-libavformat" -- cgit v1.2.3