New formula: gst-plugins-good

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Formatting
master
Stein Magnus Jodal 2010-08-14 13:28:33 +02:00 committed by Adam Vandenberg
parent 13c308418c
commit 6b7bbf0e4d
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
require 'formula'
class GstPluginsGood <Formula
homepage 'http://gstreamer.freedesktop.org/'
url 'http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.24.tar.bz2'
md5 'dc0de606e3e303cf378327b72a4d281f'
depends_on 'pkg-config'
depends_on 'gettext'
depends_on 'gst-plugins-base'
depends_on 'aalib' => :optional
depends_on 'check' => :optional
depends_on 'flac' => :optional
depends_on 'libcaca' => :optional
depends_on 'libcdio' => :optional
depends_on 'libshout' => :optional
depends_on 'orc' => :optional
depends_on 'speex' => :optional
depends_on 'taglib' => :optional
def install
system "./autogen.sh", "--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