homebrew-core/Formula/sdl_ttf.rb

24 lines
612 B
Ruby
Raw Normal View History

require 'formula'
2009-10-03 01:05:52 +00:00
2011-03-10 05:11:03 +00:00
class SdlTtf < Formula
2009-10-03 01:05:52 +00:00
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'
2009-10-03 01:05:52 +00:00
2012-08-10 05:17:37 +00:00
option :universal
2012-07-26 02:51:20 +00:00
depends_on 'pkg-config' => :build
2009-10-03 01:05:52 +00:00
depends_on 'sdl'
2012-07-26 02:51:20 +00:00
depends_on :x11
2009-10-03 01:05:52 +00:00
def install
2012-08-10 05:17:37 +00:00
ENV.universal_binary if build.universal?
2009-10-03 01:05:52 +00:00
2012-07-26 02:51:20 +00:00
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
2012-07-26 02:51:20 +00:00
"--disable-sdltest"
2009-10-03 01:05:52 +00:00
system "make install"
end
end