2010-10-22 22:11:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GstPluginsUgly < Formula
|
2010-10-22 22:11:25 +00:00
|
|
|
homepage 'http://gstreamer.freedesktop.org/'
|
2014-02-16 18:09:01 +00:00
|
|
|
url 'http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.2.3.tar.xz'
|
|
|
|
mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-ugly-1.2.3.tar.xz'
|
|
|
|
sha256 '537b0a7607eee499026388bb705b5b68985a3fd59fe22ee09accaf8cdf57eb3b'
|
2014-03-25 20:48:16 +00:00
|
|
|
revision 1
|
2010-10-22 22:11:25 +00:00
|
|
|
|
2013-09-20 15:15:56 +00:00
|
|
|
head do
|
|
|
|
url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly'
|
2013-08-14 01:29:19 +00:00
|
|
|
|
2013-11-13 17:01:29 +00:00
|
|
|
depends_on :autoconf
|
2013-08-14 01:29:19 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
|
|
|
end
|
|
|
|
|
2010-10-22 22:11:25 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'gst-plugins-base'
|
|
|
|
|
|
|
|
# The set of optional dependencies is based on the intersection of
|
2013-01-26 13:16:55 +00:00
|
|
|
# gst-plugins-ugly-0.10.17/REQUIREMENTS and Homebrew formulae
|
2010-10-22 22:11:25 +00:00
|
|
|
depends_on 'dirac' => :optional
|
|
|
|
depends_on 'mad' => :optional
|
|
|
|
depends_on 'jpeg' => :optional
|
|
|
|
depends_on 'libvorbis' => :optional
|
2011-02-21 20:34:43 +00:00
|
|
|
depends_on 'cdparanoia' => :optional
|
2010-10-22 22:11:25 +00:00
|
|
|
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
|
2011-02-21 20:34:43 +00:00
|
|
|
depends_on 'gtk+' => :optional
|
2010-10-22 22:11:25 +00:00
|
|
|
depends_on 'pango' => :optional
|
|
|
|
depends_on 'theora' => :optional
|
|
|
|
depends_on 'libmms' => :optional
|
2011-11-26 23:04:54 +00:00
|
|
|
depends_on 'x264' => :optional
|
2012-08-09 18:01:50 +00:00
|
|
|
depends_on 'opencore-amr' => :optional
|
2013-01-30 16:52:18 +00:00
|
|
|
# Does not work with libcdio 0.9
|
2010-10-22 22:11:25 +00:00
|
|
|
|
|
|
|
def install
|
2013-11-20 21:01:02 +00:00
|
|
|
ENV.append "CFLAGS", "-funroll-loops -fstrict-aliasing"
|
2012-08-09 18:01:50 +00:00
|
|
|
|
2013-03-23 22:12:11 +00:00
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--mandir=#{man}
|
2013-08-14 01:29:19 +00:00
|
|
|
--disable-debug
|
|
|
|
--disable-dependency-tracking
|
2013-03-23 22:12:11 +00:00
|
|
|
]
|
2012-08-09 18:01:50 +00:00
|
|
|
|
2013-08-14 01:29:19 +00:00
|
|
|
if build.head?
|
|
|
|
ENV.append "NOCONFIGURE", "yes"
|
|
|
|
system "./autogen.sh"
|
|
|
|
end
|
|
|
|
|
2013-03-23 22:12:11 +00:00
|
|
|
if build.with? "opencore-amr"
|
|
|
|
# Fixes build error, missing includes.
|
2013-12-14 18:13:11 +00:00
|
|
|
# https://github.com/Homebrew/homebrew/issues/14078
|
2013-03-23 22:12:11 +00:00
|
|
|
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
|
2010-10-22 22:11:25 +00:00
|
|
|
system "make"
|
2013-08-14 01:29:19 +00:00
|
|
|
system "make", "install"
|
2010-10-22 22:11:25 +00:00
|
|
|
end
|
|
|
|
end
|