homebrew-core/Formula/gst-plugins-bad.rb
2016-11-18 04:36:55 -08:00

77 lines
2.4 KiB
Ruby

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.10.1.tar.xz"
sha256 "133e0ed9fe21011b15d3898e3d3a9d17ab74eed31996da2e353353e688ca921d"
bottle do
sha256 "0a8bf14fbbcb127157d97a23e639a580b2f5ea7c98d4555311c312dc3cda4c1c" => :sierra
sha256 "e4c5237370df3cb997c7eb15f37ff0519e3db2a09d81cc57b61b252cab98c6c1" => :el_capitan
sha256 "568657be0f48517e8543549d4223adf807feb14471c13e8607d6bc61d2e60d65" => :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 "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
]
# upstream does not support Apple video for older SDKs
# error: use of undeclared identifier 'AVQueuedSampleBufferRenderingStatusFailed'
# https://github.com/Homebrew/legacy-homebrew/pull/35284
if MacOS.version <= :mavericks
args << "--disable-apple_media"
end
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