blob: 065b50b44411068a8711f4aaefc3fa391d9b95d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Fontconfig <Formula
url 'http://fontconfig.org/release/fontconfig-2.8.0.tar.gz'
homepage 'http://fontconfig.org/'
md5 '77e15a92006ddc2adbb06f840d591c0e'
# Leopard comes with 2.4.x, which is too old for many packages.
keg_only :provided_by_osx
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|