diff options
| author | Adam Vandenberg | 2012-08-09 22:17:37 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-09 22:17:37 -0700 |
| commit | 9128cb5189d726ef6c4b09768189fddb35c13700 (patch) | |
| tree | 4ada27600dc9cf7963246db24655619502938357 | |
| parent | 155923737df2680b6321c5d64d47849e5c1108d6 (diff) | |
| download | homebrew-9128cb5189d726ef6c4b09768189fddb35c13700.tar.bz2 | |
SDL_ttf: use options dsl
| -rw-r--r-- | Library/Formula/sdl_ttf.rb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/sdl_ttf.rb b/Library/Formula/sdl_ttf.rb index 46b42b993..6785f5fe0 100644 --- a/Library/Formula/sdl_ttf.rb +++ b/Library/Formula/sdl_ttf.rb @@ -5,16 +5,14 @@ class SdlTtf < Formula url 'http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz' sha1 '0ccf7c70e26b7801d83f4847766e09f09db15cc6' + option :universal + depends_on 'pkg-config' => :build depends_on 'sdl' depends_on :x11 - def options - [['--universal', 'Build universal binaries.']] - end - def install - ENV.universal_binary if ARGV.build_universal? + ENV.universal_binary if build.universal? system "./configure", "--disable-debug", "--disable-dependency-tracking", |
