096eead68a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class GstPluginsBad < Formula
|
|
homepage 'http://gstreamer.freedesktop.org/'
|
|
url 'http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.2.0.tar.xz'
|
|
mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-bad-1.2.0.tar.xz'
|
|
sha256 'a12fac6c106a7e4ae8bb2c7da508688d7db532b818319df2202f497cbd930afa'
|
|
|
|
head do
|
|
url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-bad'
|
|
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'gst-plugins-base'
|
|
|
|
depends_on 'dirac' => :optional
|
|
depends_on 'faac' => :optional
|
|
depends_on 'faad2' => :optional
|
|
depends_on 'libdvdread' => :optional
|
|
depends_on 'libexif' => :optional
|
|
depends_on 'libmms' => :optional
|
|
depends_on 'rtmpdump' => :optional
|
|
depends_on 'schroedinger' => :optional
|
|
|
|
def install
|
|
ENV.append "CFLAGS", "-no-cpp-precomp" unless ENV.compiler == :clang
|
|
ENV.append "CFLAGS", "-funroll-loops -fstrict-aliasing"
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-apple_media
|
|
--disable-yadif
|
|
--disable-sdl
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
]
|
|
|
|
if build.head?
|
|
ENV.append "NOCONFIGURE", "yes"
|
|
system "./autogen.sh"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|