7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
15 lines
410 B
Ruby
15 lines
410 B
Ruby
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
|