diff options
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 |
