class GstPluginsBad < Formula desc "GStreamer plugins less supported, not fully tested" homepage "https://gstreamer.freedesktop.org/" url "https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.12.2.tar.xz" sha256 "9c2c7edde4f59d74eb414e0701c55131f562e5c605a3ce9b091754f106c09e37" bottle do sha256 "3ebc1c4d2af058d38a4b836e1eb4e854be0167c7e21d7db5beca5663f198adb5" => :sierra sha256 "561655cabeb887edb550dd5def4194f9d4f266265cd72b77f92a8ddb22904143" => :el_capitan sha256 "9f05ed126cd2f0079b6afe48c0551682f54fbc3e267db5977814109314109cfb" => :yosemite end head do url "https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad.git" depends_on "autoconf" => :build depends_on "automake" => :build end depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "gettext" depends_on "gst-plugins-base" depends_on "openssl" depends_on "jpeg" => :recommended depends_on "orc" => :recommended depends_on "dirac" => :optional depends_on "faac" => :optional depends_on "faad2" => :optional depends_on "fdk-aac" => :optional depends_on "gnutls" => :optional depends_on "gtk+3" => :optional depends_on "libdvdread" => :optional depends_on "libexif" => :optional depends_on "libmms" => :optional depends_on "homebrew/science/opencv" => :optional depends_on "opus" => :optional depends_on "rtmpdump" => :optional depends_on "schroedinger" => :optional depends_on "sound-touch" => :optional depends_on "srtp" => :optional depends_on "libvo-aacenc" => :optional def install args = %W[ --prefix=#{prefix} --disable-yadif --disable-sdl --disable-debug --disable-dependency-tracking ] args << "--with-gtk=3.0" if build.with? "gtk+3" if build.head? # autogen is invoked in "stable" build because we patch configure.ac ENV["NOCONFIGURE"] = "yes" system "./autogen.sh" end system "./configure", *args system "make" system "make", "install" end test do gst = Formula["gstreamer"].opt_bin/"gst-inspect-1.0" output = shell_output("#{gst} --plugin dvbsuboverlay") assert_match version.to_s, output end end