homebrew-core/Formula/gstreamermm.rb

96 lines
2.7 KiB
Ruby

class Gstreamermm < Formula
desc "GStreamer C++ bindings"
homepage "https://gstreamer.freedesktop.org/bindings/cplusplus.html"
url "https://download.gnome.org/sources/gstreamermm/1.4/gstreamermm-1.4.3.tar.xz"
sha256 "f1c11ee1cf7537d77de7f8d486e09c5140cc4bb78882849718cd88959a55462e"
revision 1
bottle do
cellar :any
sha256 "467de3a6c47ebf36d74be7a1f0f921ad9b67087d8de3213cdbb929c5ec679106" => :el_capitan
sha256 "96d32cde0a48c4a2a78ed0f9bdcab529eefc82b1c807d87f86f571b252a73dad" => :yosemite
sha256 "cfb073d82bfdfdd8f485b70021ba0571528e2004bf7a6716ca03f9fd6d5490eb" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "gstreamer"
depends_on "glibmm"
depends_on "gst-plugins-base"
needs :cxx11
def install
ENV.cxx11
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <gstreamermm.h>
int main(int argc, char *argv[]) {
guint macro, minor, micro;
Gst::version(macro, minor, micro);
return 0;
}
EOS
gettext = Formula["gettext"]
glib = Formula["glib"]
glibmm = Formula["glibmm"]
gst_plugins_base = Formula["gst-plugins-base"]
gstreamer = Formula["gstreamer"]
libsigcxx = Formula["libsigc++"]
flags = %W[
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{glibmm.opt_include}/giomm-2.4
-I#{glibmm.opt_include}/glibmm-2.4
-I#{glibmm.opt_lib}/giomm-2.4/include
-I#{glibmm.opt_lib}/glibmm-2.4/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}/gstreamermm-1.0
-I#{libsigcxx.opt_include}/sigc++-2.0
-I#{libsigcxx.opt_lib}/sigc++-2.0/include
-I#{lib}/gstreamermm-1.0/include
-D_REENTRANT
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{glibmm.opt_lib}
-L#{gst_plugins_base.opt_lib}
-L#{gstreamer.opt_lib}
-L#{libsigcxx.opt_lib}
-L#{lib}
-lgio-2.0
-lgiomm-2.4
-lglib-2.0
-lglibmm-2.4
-lgobject-2.0
-lgstapp-1.0
-lgstaudio-1.0
-lgstbase-1.0
-lgstcheck-1.0
-lgstcontroller-1.0
-lgstfft-1.0
-lgstnet-1.0
-lgstpbutils-1.0
-lgstreamer-1.0
-lgstreamermm-1.0
-lgstriff-1.0
-lgstrtp-1.0
-lgstsdp-1.0
-lgsttag-1.0
-lgstvideo-1.0
-lintl
-lsigc-2.0
]
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test", *flags
system "./test"
end
end