class GstPluginsUgly < Formula desc "Library for constructing graphs of media-handling components" homepage "https://gstreamer.freedesktop.org/" url "https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.16.1.tar.xz" sha256 "4bf913b2ca5195ac3b53b5e3ade2dc7c45d2258507552ddc850c5fa425968a1d" bottle do sha256 "88a6413d10e0ad2a2a1b36372ba3831b902ec78ada06c2f763e0cf7eab2d5a11" => :catalina sha256 "013482b8c2b286e9f97b61d6aed9a64f954f158d6b93f8cb7e054974a83b9b8a" => :mojave sha256 "28c1bf0e8f8c83eec65d49ce829bb37c821c48f76c287aa6f3f19daba5e077eb" => :high_sierra sha256 "35ad1217120377f824ba83b318e1bac892ff42529c514ae0eed3badd43a3c5e1" => :sierra end head do url "https://anongit.freedesktop.org/git/gstreamer/gst-plugins-ugly.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end depends_on "pkg-config" => :build depends_on "flac" depends_on "gettext" depends_on "gst-plugins-base" depends_on "jpeg" depends_on "libmms" depends_on "libshout" depends_on "libvorbis" depends_on "pango" depends_on "theora" depends_on "x264" def install args = %W[ --prefix=#{prefix} --mandir=#{man} --disable-debug --disable-dependency-tracking --disable-amrnb --disable-amrwb ] if build.head? 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 dvdsub") assert_match version.to_s, output end end