5ee23a1631
Building from gstreamer master is required for development purpose. Also gest-plugins-* and gst-libav get --HEAD. Closes Homebrew/homebrew#21665. Signed-off-by: Samuel John <github@SamuelJohn.de>
76 lines
2.4 KiB
Ruby
76 lines
2.4 KiB
Ruby
require 'formula'
|
|
|
|
class GstPluginsUgly < Formula
|
|
homepage 'http://gstreamer.freedesktop.org/'
|
|
url 'http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.0.9.tar.xz'
|
|
mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-ugly-1.0.9.tar.xz'
|
|
sha256 '11250fe9e44b0169c3a289e981b31874b483643ed78f619682ae1644d7088379'
|
|
|
|
head 'git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly'
|
|
|
|
if build.head?
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz' => :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 'dirac' => :optional
|
|
depends_on 'mad' => :optional
|
|
depends_on 'jpeg' => :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
|
|
ENV.append "CFLAGS", "-no-cpp-precomp -funroll-loops -fstrict-aliasing"
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
]
|
|
|
|
if build.head?
|
|
ENV.append "NOCONFIGURE", "yes"
|
|
system "./autogen.sh"
|
|
end
|
|
|
|
if build.with? "opencore-amr"
|
|
# Fixes build error, missing includes.
|
|
# https://github.com/mxcl/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
|
|
end
|