homebrew-core/Formula/clutter-gst.rb

118 lines
3.5 KiB
Ruby

class ClutterGst < Formula
desc "ClutterMedia interface using GStreamer for video and audio"
homepage "https://developer.gnome.org/clutter-gst/"
url "https://download.gnome.org/sources/clutter-gst/3.0/clutter-gst-3.0.18.tar.xz"
sha256 "0aec0d0c6020cd19a5bb0dab1165a92748f81a9a3acdfabb0f966d5f53bc8093"
bottle do
sha256 "10d632bb4e211442e52ef4bf02286dc9d22dbc93c8c0879c817a822258d77570" => :sierra
sha256 "23589497f145c4cbebab2f7aa06dabc1f651179f36abbfa7dbc5e982facc37fa" => :el_capitan
sha256 "2885b0c1cf9e0aa2dfc5594f8f63f788cb8d9195da1e39adf953a9589160d51b" => :yosemite
sha256 "208eac2d1030241bd5ac8063c50b4019a1c0298b600225e66e5cd2e65207ee4d" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "clutter"
depends_on "gstreamer"
depends_on "gst-plugins-base"
depends_on "gdk-pixbuf"
def install
args = %W[
--disable-dependency-tracking
--disable-debug
--prefix=#{prefix}
--enable-introspection=yes
--disable-silent-rules
--disable-gtk-doc-html
]
# the source code requires gdk-pixbuf but configure doesn't look for it
ENV.append "CFLAGS", `pkg-config --cflags gdk-pixbuf-2.0`.chomp
ENV.append "LIBS", `pkg-config --libs gdk-pixbuf-2.0`.chomp
system "./configure", *args
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <clutter-gst/clutter-gst.h>
int main(int argc, char *argv[]) {
clutter_gst_init(&argc, &argv);
return 0;
}
EOS
atk = Formula["atk"]
cairo = Formula["cairo"]
clutter = Formula["clutter"]
cogl = Formula["cogl"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
gst_plugins_base = Formula["gst-plugins-base"]
gstreamer = Formula["gstreamer"]
json_glib = Formula["json-glib"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pixman = Formula["pixman"]
flags = %W[
-I#{atk.opt_include}/atk-1.0
-I#{cairo.opt_include}/cairo
-I#{clutter.opt_include}/clutter-1.0
-I#{cogl.opt_include}/cogl
-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#{gst_plugins_base.opt_include}/gstreamer-1.0
-I#{gstreamer.opt_include}/gstreamer-1.0
-I#{gstreamer.opt_lib}/gstreamer-1.0/include
-I#{include}/clutter-gst-3.0
-I#{json_glib.opt_include}/json-glib-1.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#{clutter.opt_lib}
-L#{cogl.opt_lib}
-L#{gdk_pixbuf.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gst_plugins_base.opt_lib}
-L#{gstreamer.opt_lib}
-L#{json_glib.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lcairo-gobject
-lclutter-1.0
-lclutter-gst-3.0
-lcogl
-lcogl-pango
-lcogl-path
-lgio-2.0
-lglib-2.0
-lgmodule-2.0
-lgobject-2.0
-lgstbase-1.0
-lgstreamer-1.0
-lgstvideo-1.0
-lintl
-ljson-glib-1.0
-lpango-1.0
-lpangocairo-1.0
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end