22 lines
597 B
Ruby
22 lines
597 B
Ruby
require 'formula'
|
|
|
|
class Fontconfig < Formula
|
|
homepage 'http://fontconfig.org/'
|
|
url 'http://fontconfig.org/release/fontconfig-2.10.95.tar.bz2'
|
|
sha1 'f9f4a25b730a9c56f951db6fec639ddeeb92a9d4'
|
|
|
|
keg_only :provided_pre_mountain_lion
|
|
|
|
option :universal
|
|
|
|
depends_on :freetype
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--with-add-fonts=/Library/Fonts,~/Library/Fonts",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|