diff options
| -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", |
