class Gstreamer < Formula desc "Development framework for multimedia applications" homepage "https://gstreamer.freedesktop.org/" url "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.10.0.tar.xz" sha256 "1e7778fabe480185bfc4ce552f0860de1443f6618a68a86ccdd65854fed37207" bottle do sha256 "47f19d709cc9c63a8edaec7f3881f02a6c63da6e3d7c31396a1031fcd2a58270" => :sierra sha256 "fe95a60a7cd00598c4e081892ff27a39af12aa407125f8fc0549f002efaaf32a" => :el_capitan sha256 "12d52a486f1ef86d14fbce1510d067a611a651335f8c07411fc2312c3545f6f2" => :yosemite end head do url "https://anongit.freedesktop.org/git/gstreamer/gstreamer.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end depends_on "pkg-config" => :build depends_on "gobject-introspection" depends_on "gettext" depends_on "glib" depends_on "bison" def install args = %W[ --prefix=#{prefix} --disable-debug --disable-dependency-tracking --disable-gtk-doc --enable-introspection=yes ] if build.head? ENV["NOCONFIGURE"] = "yes" system "./autogen.sh" # Ban trying to chown to root. # https://bugzilla.gnome.org/show_bug.cgi?id=750367 args << "--with-ptp-helper-permissions=none" end # Look for plugins in HOMEBREW_PREFIX/lib/gstreamer-1.0 instead of # HOMEBREW_PREFIX/Cellar/gstreamer/1.0/lib/gstreamer-1.0, so we'll find # plugins installed by other packages without setting GST_PLUGIN_PATH in # the environment. inreplace "configure", 'PLUGINDIR="$full_var"', "PLUGINDIR=\"#{HOMEBREW_PREFIX}/lib/gstreamer-1.0\"" system "./configure", *args system "make" system "make", "install" end test do system bin/"gst-inspect-1.0" end end