diff options
| author | Jack Nagel | 2013-09-01 14:55:24 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-09-01 15:29:02 -0500 |
| commit | 47c2b17bce0c0c828398f89d7fa3badf0b32ec45 (patch) | |
| tree | 1ffc727d80f977395ccbb938537cea10af6387c1 /Library | |
| parent | 1ddde1903b9c863a194cb9b63f6e4d0a08c2225e (diff) | |
| download | homebrew-47c2b17bce0c0c828398f89d7fa3badf0b32ec45.tar.bz2 | |
freetype 2.5.0.1
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/freetype.rb | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Library/Formula/freetype.rb b/Library/Formula/freetype.rb index 687e83ff9..f524d85a1 100644 --- a/Library/Formula/freetype.rb +++ b/Library/Formula/freetype.rb @@ -2,22 +2,25 @@ require 'formula' class Freetype < Formula homepage 'http://www.freetype.org' - url 'http://downloads.sf.net/project/freetype/freetype2/2.4.11/freetype-2.4.11.tar.gz' - sha1 'a8373512281f74a53713904050e0d71c026bf5cf' + url 'http://downloads.sf.net/project/freetype/freetype2/2.5.0/freetype-2.5.0.1.tar.gz' + sha1 '2d539b375688466a8e7dcc4260ab21003faab08c' + + bottle do + # Included with X11 so no bottle needed before Mountain Lion. + sha1 '17f543980ff81f7173f5e6b2812c0582bbaade8c' => :mountain_lion + end keg_only :provided_pre_mountain_lion option :universal - bottle do - # Included with X11 so no bottle needed before Mountain Lion. - sha1 '7dc4747810e51beb99fd36c8f5baade6e65d19b7' => :mountain_lion - end + depends_on :libpng def install ENV.universal_binary if build.universal? system "./configure", "--prefix=#{prefix}" - system "make install" + system "make" + system "make", "install" end test do |
