homebrew-core/Formula/libglade.rb

87 lines
2.4 KiB
Ruby

class Libglade < Formula
desc "RAD tool to help build GTK+ interfaces"
homepage "https://glade.gnome.org"
url "https://download.gnome.org/sources/libglade/2.6/libglade-2.6.4.tar.gz"
sha256 "c41d189b68457976069073e48d6c14c183075d8b1d8077cb6dfb8b7c5097add3"
revision 2
bottle do
sha256 "e9d7a005ae30c9c63510803f27a85899477e53abb05e8e6dc2332a40e062bf7c" => :sierra
sha256 "29eb70db9e6a152942ec1b740fe5f8d6efe54e0887645eadd6c753db95299696" => :el_capitan
sha256 "f014633d2870eea3d232620a296721023327e3b43c344f996521e5e77e335023" => :yosemite
end
depends_on "pkg-config" => :build
depends_on "libxml2"
depends_on "gtk+"
def install
ENV.append "LDFLAGS", "-lgmodule-2.0"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <glade/glade.h>
int main(int argc, char *argv[]) {
glade_init();
return 0;
}
EOS
ENV.libxml2
atk = Formula["atk"]
cairo = Formula["cairo"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
gtkx = Formula["gtk+"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pixman = Formula["pixman"]
flags = %W[
-I#{atk.opt_include}/atk-1.0
-I#{cairo.opt_include}/cairo
-I#{fontconfig.opt_include}
-I#{freetype.opt_include}/freetype2
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{gtkx.opt_include}/gtk-2.0
-I#{gtkx.opt_lib}/gtk-2.0/include
-I#{include}/libglade-2.0
-I#{libpng.opt_include}/libpng16
-I#{pango.opt_include}/pango-1.0
-I#{pixman.opt_include}/pixman-1
-D_REENTRANT
-L#{atk.opt_lib}
-L#{cairo.opt_lib}
-L#{gdk_pixbuf.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gtkx.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lgdk-quartz-2.0
-lgdk_pixbuf-2.0
-lgio-2.0
-lglade-2.0
-lglib-2.0
-lgobject-2.0
-lgtk-quartz-2.0
-lintl
-lpango-1.0
-lpangocairo-1.0
-lxml2
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end