2010-01-22 05:07:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pango <Formula
|
2010-11-06 04:42:22 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/pango/1.28/pango-1.28.3.tar.bz2'
|
2010-01-22 05:07:14 +00:00
|
|
|
homepage 'http://www.pango.org/'
|
2010-11-06 04:42:22 +00:00
|
|
|
sha256 '5e278bc9430cc7bb00270f183360d262c5006b51248e8b537ea904573f200632'
|
2010-01-22 05:07:14 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-03-25 03:17:25 +00:00
|
|
|
depends_on 'glib'
|
2010-01-22 05:07:14 +00:00
|
|
|
|
2010-04-24 18:15:13 +00:00
|
|
|
if MACOS_VERSION < 10.6
|
|
|
|
depends_on 'fontconfig' # Leopard's fontconfig is too old.
|
|
|
|
depends_on 'cairo' # Leopard doesn't come with Cairo.
|
|
|
|
end
|
|
|
|
|
2010-01-22 05:07:14 +00:00
|
|
|
def install
|
2010-10-06 18:42:41 +00:00
|
|
|
fails_with_llvm "Undefined symbols when linking", :build => "2326"
|
2010-02-19 03:42:36 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--with-x"
|
2010-01-22 05:07:14 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|