105 lines
2.8 KiB
Ruby
105 lines
2.8 KiB
Ruby
class Pango < Formula
|
|
desc "Framework for layout and rendering of i18n text"
|
|
homepage "http://www.pango.org/"
|
|
url "https://download.gnome.org/sources/pango/1.40/pango-1.40.3.tar.xz"
|
|
sha256 "abba8b5ce728520c3a0f1535eab19eac3c14aeef7faa5aded90017ceac2711d3"
|
|
|
|
bottle do
|
|
sha256 "e64fe3eacf55ceb1dbd50d1eb597fd42abed140b9d527aa3be9aa43f9a668b9c" => :sierra
|
|
sha256 "3139d621454aaaaedd9ed42dd7fc1b40124152d7db750873448aeb839ca6d59d" => :el_capitan
|
|
sha256 "380fff999d7a0e3931aa3c08f365071b90acb55a2d85f998aa5c9fa38cfacdfc" => :yosemite
|
|
sha256 "0a914c5cd46cdcf2c2b52ce1f4eda1a6820c77fbb333f5e789b26582356902a9" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://git.gnome.org/browse/pango.git"
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "gtk-doc" => :build
|
|
end
|
|
|
|
option :universal
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on :x11 => :optional
|
|
depends_on "glib"
|
|
depends_on "cairo"
|
|
depends_on "harfbuzz"
|
|
depends_on "fontconfig"
|
|
depends_on "gobject-introspection"
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--enable-man
|
|
--with-html-dir=#{share}/doc
|
|
--enable-introspection=yes
|
|
--enable-static
|
|
]
|
|
|
|
if build.with? "x11"
|
|
args << "--with-xft"
|
|
else
|
|
args << "--without-xft"
|
|
end
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/pango-view", "--version"
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <pango/pangocairo.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
PangoFontMap *fontmap;
|
|
int n_families;
|
|
PangoFontFamily **families;
|
|
fontmap = pango_cairo_font_map_get_default();
|
|
pango_font_map_list_families (fontmap, &families, &n_families);
|
|
g_free(families);
|
|
return 0;
|
|
}
|
|
EOS
|
|
cairo = Formula["cairo"]
|
|
fontconfig = Formula["fontconfig"]
|
|
freetype = Formula["freetype"]
|
|
gettext = Formula["gettext"]
|
|
glib = Formula["glib"]
|
|
libpng = Formula["libpng"]
|
|
pixman = Formula["pixman"]
|
|
flags = %W[
|
|
-I#{cairo.opt_include}/cairo
|
|
-I#{fontconfig.opt_include}
|
|
-I#{freetype.opt_include}/freetype2
|
|
-I#{gettext.opt_include}
|
|
-I#{glib.opt_include}/glib-2.0
|
|
-I#{glib.opt_lib}/glib-2.0/include
|
|
-I#{include}/pango-1.0
|
|
-I#{libpng.opt_include}/libpng16
|
|
-I#{pixman.opt_include}/pixman-1
|
|
-D_REENTRANT
|
|
-L#{cairo.opt_lib}
|
|
-L#{gettext.opt_lib}
|
|
-L#{glib.opt_lib}
|
|
-L#{lib}
|
|
-lcairo
|
|
-lglib-2.0
|
|
-lgobject-2.0
|
|
-lintl
|
|
-lpango-1.0
|
|
-lpangocairo-1.0
|
|
]
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|