homebrew-core/Formula/sdl_ttf.rb
nibbles 2bits 3fdc0efb4d sdl_ttf 2.0.11
Upgrade sdl_ttf to version 2.0.11.
Tested both native and universal on Lion using clang and llvm
from XCode-4.3.3.

Closes Homebrew/homebrew#13161.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-07-02 13:04:40 -05:00

24 lines
698 B
Ruby

require 'formula'
class SdlTtf < Formula
homepage 'http://www.libsdl.org/projects/SDL_ttf/'
url 'http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz'
sha1 '0ccf7c70e26b7801d83f4847766e09f09db15cc6'
depends_on 'sdl'
depends_on :x11 # for Freetype
def options
[['--universal', 'Build universal binaries.']]
end
def install
ENV.universal_binary if ARGV.build_universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest",
"--with-freetype-exec-prefix=#{MacOS.x11_prefix}"
system "make install"
end
end