diff options
| author | Stein Magnus Jodal | 2010-08-14 13:28:33 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-14 16:16:31 -0700 |
| commit | e031b36aecbea569e196ba9de42fc72b5f75da83 (patch) | |
| tree | f2e05b02fc523474ec1a2cc58dd155eeb6412d94 | |
| parent | 24a16040ce95a56f69a986960279ebf256c9e9ff (diff) | |
| download | homebrew-e031b36aecbea569e196ba9de42fc72b5f75da83.tar.bz2 | |
New formula: gst-plugins-good
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Formatting
| -rw-r--r-- | Library/Formula/gst-plugins-good.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Library/Formula/gst-plugins-good.rb b/Library/Formula/gst-plugins-good.rb new file mode 100644 index 000000000..a59ae10c9 --- /dev/null +++ b/Library/Formula/gst-plugins-good.rb @@ -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 |
