87 lines
2.9 KiB
Ruby
87 lines
2.9 KiB
Ruby
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.12.2.tar.xz"
|
|
sha256 "1cc3942bbf3ea87da3e35437d4e014e991b103db22a6174f62a98c89c3f5f466"
|
|
revision 1
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "b2e4068b9857aa17aee49cb042ffdb04a107f47c4e9de43ac670a51315e2c35b" => :high_sierra
|
|
sha256 "89a00f2fa1bb460ee3041ec3f196e57f5c5e3e80585034a50bdcb7e8bed38152" => :sierra
|
|
sha256 "0601d52ef36d2fbe3ad8769f42494d920c7afde898d57c8d540773522f847a9d" => :el_capitan
|
|
sha256 "adf4aae651764fad774a2804d1b1a9d56deea19fad20ae710ecc393729b3e511" => :yosemite
|
|
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 "gettext"
|
|
depends_on "gst-plugins-base"
|
|
|
|
# The set of optional dependencies is based on the intersection of
|
|
# gst-plugins-ugly-0.10.17/REQUIREMENTS and Homebrew formulae
|
|
depends_on "jpeg" => :recommended
|
|
depends_on "dirac" => :optional
|
|
depends_on "mad" => :optional
|
|
depends_on "libvorbis" => :optional
|
|
depends_on "cdparanoia" => :optional
|
|
depends_on "lame" => :optional
|
|
depends_on "two-lame" => :optional
|
|
depends_on "libshout" => :optional
|
|
depends_on "aalib" => :optional
|
|
depends_on "libcaca" => :optional
|
|
depends_on "libdvdread" => :optional
|
|
depends_on "libmpeg2" => :optional
|
|
depends_on "a52dec" => :optional
|
|
depends_on "liboil" => :optional
|
|
depends_on "flac" => :optional
|
|
depends_on "gtk+" => :optional
|
|
depends_on "pango" => :optional
|
|
depends_on "theora" => :optional
|
|
depends_on "libmms" => :optional
|
|
depends_on "x264" => :optional
|
|
depends_on "opencore-amr" => :optional
|
|
# Does not work with libcdio 0.9
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
]
|
|
|
|
if build.head?
|
|
ENV["NOCONFIGURE"] = "yes"
|
|
system "./autogen.sh"
|
|
end
|
|
|
|
if build.with? "opencore-amr"
|
|
# Fixes build error, missing includes.
|
|
# https://github.com/Homebrew/homebrew/issues/14078
|
|
nbcflags = `pkg-config --cflags opencore-amrnb`.chomp
|
|
wbcflags = `pkg-config --cflags opencore-amrwb`.chomp
|
|
ENV["AMRNB_CFLAGS"] = nbcflags + "-I#{HOMEBREW_PREFIX}/include/opencore-amrnb"
|
|
ENV["AMRWB_CFLAGS"] = wbcflags + "-I#{HOMEBREW_PREFIX}/include/opencore-amrwb"
|
|
else
|
|
args << "--disable-amrnb" << "--disable-amrwb"
|
|
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
|