2010-06-15 06:06:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pangomm < Formula
|
2010-06-15 06:06:52 +00:00
|
|
|
homepage 'http://www.pango.org/'
|
2012-02-06 21:44:07 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/pangomm/2.28/pangomm-2.28.4.tar.bz2'
|
|
|
|
sha256 '933631c110e091f42d16a0f7d7d8f0249b2c762b83db9cfd9091e8fda1b772a5'
|
2010-06-15 06:06:52 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-06-15 06:06:52 +00:00
|
|
|
depends_on 'pango'
|
|
|
|
depends_on 'glibmm'
|
|
|
|
depends_on 'cairomm'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2010-06-15 06:06:52 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|