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.14.4.tar.xz" sha256 "910b4e0e2e897e8b6d06767af1779d70057c309f67292f485ff988d087aa0de5" bottle do rebuild 3 sha256 "20a22729d937fa2609c8327a83f94a0870877cf8a5e90e827fe4cc2930d366d2" => :mojave sha256 "c3963a1dd84baf45a4d5de9a7880a12b130651301e49f701295127ad684c367c" => :high_sierra sha256 "3c774ef811e97cbd5a619e3e9aa9db3522747d687c1aa4acc4ea778c3e4fd9a8" => :sierra 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 "gobject-introspection" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "faac" depends_on "faad2" depends_on "gettext" depends_on "gst-plugins-base" depends_on "jpeg" depends_on "libmms" depends_on "openssl" depends_on "opus" depends_on "orc" def install args = %W[ --prefix=#{prefix} --disable-yadif --disable-examples --disable-debug --disable-dependency-tracking --enable-introspection=yes ] 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