aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-04-27 11:31:34 -0700
committerAdam Vandenberg2014-04-27 11:31:34 -0700
commit3ad82fc3fd76828dc2599a6e62a18b69a61c01c4 (patch)
treebceaa001d84a1670c086257566a474ddbfbc885b /Library
parentbbcfaeef8bea0046dcd5c818db8b48031c70ab12 (diff)
downloadhomebrew-3ad82fc3fd76828dc2599a6e62a18b69a61c01c4.tar.bz2
sdl_ttf: use string dep for freetype
* also, style nit-picks
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sdl_ttf.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/sdl_ttf.rb b/Library/Formula/sdl_ttf.rb
index ec29199ad..246139f67 100644
--- a/Library/Formula/sdl_ttf.rb
+++ b/Library/Formula/sdl_ttf.rb
@@ -1,15 +1,15 @@
-require 'formula'
+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'
+ 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"
option :universal
- depends_on 'pkg-config' => :build
- depends_on 'sdl'
- depends_on :freetype
+ depends_on "pkg-config" => :build
+ depends_on "sdl"
+ depends_on "freetype"
def install
ENV.universal_binary if build.universal?
@@ -18,6 +18,6 @@ class SdlTtf < Formula
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
- system "make install"
+ system "make", "install"
end
end