b1119dae6f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class GstPluginsGood < Formula
|
|
homepage 'http://gstreamer.freedesktop.org/'
|
|
url 'http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.0.5.tar.xz'
|
|
sha256 '53bd0b848e7896f1b22548ca4e8be56cf425e5100e121c472dff8272d5140bc5'
|
|
|
|
depends_on :x11
|
|
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-good-0.10.30/REQUIREMENTS and Homebrew formulae
|
|
depends_on 'orc' => :optional
|
|
depends_on 'gtk+' => :optional
|
|
depends_on 'check' => :optional
|
|
depends_on 'aalib' => :optional
|
|
depends_on 'libcdio' => :optional
|
|
depends_on 'esound' => :optional
|
|
depends_on 'flac' => :optional
|
|
depends_on 'jpeg' => :optional
|
|
depends_on 'libcaca' => :optional
|
|
depends_on 'libdv' => :optional
|
|
depends_on 'libshout' => :optional
|
|
depends_on 'speex' => :optional
|
|
depends_on 'taglib' => :optional
|
|
depends_on 'libsoup' => :optional
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-schemas-install",
|
|
"--disable-gtk-doc",
|
|
"--disable-goom",
|
|
"--with-default-videosink=ximagesink"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|