homebrew-core/Formula/gst-plugins-bad.rb
Oliver Hookins 008b308cf1 gst-plugins-bad: add gnutls option.
- This allows HLS elements within the fragmented plugin to be built.

Closes Homebrew/homebrew#26432.
Closes Homebrew/homebrew#26426.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-05 15:55:07 +00:00

52 lines
1.3 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.1.tar.xz'
mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-bad-1.2.1.tar.xz'
sha256 'f33e7c81fcb742fe50b73ad87ef8a4baa7d6b59c5002a10bf63c8dee22404929'
head do
url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-bad'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'gst-plugins-base'
depends_on 'dirac' => :optional
depends_on 'faac' => :optional
depends_on 'faad2' => :optional
depends_on 'gnutls' => :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", "-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