Created
March 8, 2014 17:56
-
-
Save rc1/9435952 to your computer and use it in GitHub Desktop.
Homebrew GStreamer formula with vex / vp8enc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class GstPluginsGood < Formula | |
| homepage 'http://gstreamer.freedesktop.org/' | |
| stable do | |
| url 'http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.2.3.tar.xz' | |
| mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-good-1.2.3.tar.xz' | |
| sha256 'bfb33536a515bdcc34482f64b8d9cc3e47c753878b254923b419bc2f7485e470' | |
| depends_on 'check' => :optional | |
| end | |
| head do | |
| url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-good' | |
| depends_on :autoconf | |
| depends_on :automake | |
| depends_on :libtool | |
| depends_on 'check' | |
| end | |
| depends_on :x11 | |
| depends_on 'libvpx' | |
| depends_on 'pkg-config' => :build | |
| depends_on 'gettext' | |
| depends_on 'gst-plugins-base' | |
| depends_on 'libsoup' | |
| # 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 'aalib' => :optional | |
| depends_on 'libcdio' => :optional | |
| depends_on 'esound' => :optional | |
| depends_on 'flac' => [:optional, 'with-libogg'] | |
| 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 'libogg' if build.with? 'flac' | |
| def install | |
| args = %W[ | |
| --prefix=#{prefix} | |
| --disable-schemas-install | |
| --disable-gtk-doc | |
| --disable-goom | |
| --with-default-videosink=ximagesink | |
| --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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment