homebrew-core/Formula/sdl_ttf.rb

41 lines
1.6 KiB
Ruby

class SdlTtf < Formula
desc "Library for using TrueType fonts in SDL applications"
homepage "https://www.libsdl.org/projects/SDL_ttf/"
url "https://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz"
sha256 "724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248ebcdb7"
bottle do
cellar :any
rebuild 2
sha256 "731c0e10eeaba063a23911df2ecd0cf68aa2e3d17cd4fc047515c034a2581b41" => :sierra
sha256 "7e57e640eb289ddeddb5ef0342e57389675e828346e1855fe8ee383c46d43ec4" => :el_capitan
sha256 "3bab7379b69d8bde9d2df8384852774b13d1be5378711ab9dffe97e548f5c156" => :yosemite
sha256 "657a236fbbe182aaa216b2f2d7935b257dc23cca3e4a26978cdee89cb39be341" => :mavericks
sha256 "909f446963645f9634ae76e5f5eb3f3045e6872108a8c124b690bb3c53bb8630" => :mountain_lion
end
option :universal
depends_on "pkg-config" => :build
depends_on "sdl"
depends_on "freetype"
# Fix broken TTF_RenderGlyph_Shaded()
# https://bugzilla.libsdl.org/show_bug.cgi?id=1433
patch do
url "https://gist.githubusercontent.com/tomyun/a8d2193b6e18218217c4/raw/8292c48e751c6a9939db89553d01445d801420dd/sdl_ttf-fix-1433.diff"
sha256 "4c2e38bb764a23bc48ae917b3abf60afa0dc67f8700e7682901bf9b03c15be5f"
end
def install
ENV.universal_binary if build.universal?
inreplace "SDL_ttf.pc.in", "@prefix@", HOMEBREW_PREFIX
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
system "make", "install"
end
end