class Gegl < Formula desc "Graph based image processing framework" homepage "http://www.gegl.org/" url "https://download.gimp.org/pub/gegl/0.4/gegl-0.4.0.tar.bz2" sha256 "d04d2bfa0ff5a4bcfe7566f7418929a9c80f0109fa248ea4ff19538b3e99f0c5" bottle do sha256 "81a85ee7818d0ccd64ad8320a2a3ebbb026d8692bc8dbcb161e919c7260c82f7" => :high_sierra sha256 "3a4e087d25229997fb8e53b5df3193ca9a63bd50be0cbf8fe89b1789ae8642a7" => :sierra sha256 "9283489d42667e47005b08d3ac63c28c74ff8ad3d140e0ae330fcf68e3de439d" => :el_capitan end head do # Use the Github mirror because official git unreliable. url "https://github.com/GNOME/gegl.git" depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build end depends_on "intltool" => :build depends_on "pkg-config" => :build depends_on "babl" depends_on "gettext" depends_on "glib" depends_on "jpeg" depends_on "json-glib" depends_on "libpng" depends_on "cairo" => :optional depends_on "librsvg" => :optional depends_on "lua" => :optional depends_on "pango" => :optional depends_on "sdl" => :optional conflicts_with "coreutils", :because => "both install `gcut` binaries" def install args = %W[ --disable-debug --disable-dependency-tracking --prefix=#{prefix} --disable-docs --without-jasper --without-umfpack ] args << "--without-cairo" if build.without? "cairo" system "./autogen.sh" if build.head? system "./configure", *args system "make", "install" end test do (testpath/"test.c").write <<~EOS #include gint main(gint argc, gchar **argv) { gegl_init(&argc, &argv); GeglNode *gegl = gegl_node_new (); gegl_exit(); return 0; } EOS system ENV.cc, "-I#{include}/gegl-0.4", "-L#{lib}", "-lgegl-0.4", "-I#{Formula["babl"].opt_include}/babl-0.1", "-I#{Formula["glib"].opt_include}/glib-2.0", "-I#{Formula["glib"].opt_lib}/glib-2.0/include", "-L#{Formula["glib"].opt_lib}", "-lgobject-2.0", "-lglib-2.0", testpath/"test.c", "-o", testpath/"test" system "./test" end end