homebrew-core/Formula/pango.rb
Augie Fackler b504772b77 Update pango to latest version.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Updated it further still.
2010-04-20 13:07:08 -07:00

15 lines
387 B
Ruby

require 'formula'
class Pango <Formula
url 'http://ftp.gnome.org/pub/GNOME/sources/pango/1.28/pango-1.28.0.tar.bz2'
homepage 'http://www.pango.org/'
sha256 '68480485b714e3570a58c270add9e9785fa78068f7410949b478e8a9d3f5bc40'
depends_on 'pkg-config'
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}", "--with-x"
system "make install"
end
end