diff options
| author | cosmo0920 | 2014-04-30 22:20:49 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-30 21:00:58 -0700 |
| commit | 99c0173358647cb628007d09929e933dce83faab (patch) | |
| tree | 8527e83734ccefbb5399d15485a589344feee585 /Library/Formula | |
| parent | 433b5499aa4070f16b2c02f3c04167a301a67e45 (diff) | |
| download | homebrew-99c0173358647cb628007d09929e933dce83faab.tar.bz2 | |
gst-plugins-base: make --enable-introspection=yes explicitly
Closes #28857.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gst-plugins-base.rb | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/Library/Formula/gst-plugins-base.rb b/Library/Formula/gst-plugins-base.rb index f310451e2..bb3fb599b 100644 --- a/Library/Formula/gst-plugins-base.rb +++ b/Library/Formula/gst-plugins-base.rb @@ -1,35 +1,32 @@ -require 'formula' +require "formula" class GstPluginsBase < Formula - homepage 'http://gstreamer.freedesktop.org/' - url 'http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.2.4.tar.xz' - mirror 'http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-base-1.2.4.tar.xz' - sha256 '4d6273dc3f5a94bcc53ccfe0711cfddd49e31371d1136bf62fa1ecc604fc6550' + homepage "http://gstreamer.freedesktop.org/" + url "http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.2.4.tar.xz" + mirror "http://ftp.osuosl.org/pub/blfs/svn/g/gst-plugins-base-1.2.4.tar.xz" + sha256 "4d6273dc3f5a94bcc53ccfe0711cfddd49e31371d1136bf62fa1ecc604fc6550" head do - url 'git://anongit.freedesktop.org/gstreamer/gst-plugins-base' + url "git://anongit.freedesktop.org/gstreamer/gst-plugins-base" depends_on :autoconf depends_on :automake depends_on :libtool end - depends_on 'pkg-config' => :build - depends_on 'gettext' - if build.with? 'gobject-introspection' - depends_on 'gstreamer' => 'with-gobject-introspection' - else - depends_on 'gstreamer' - end + depends_on "pkg-config" => :build + depends_on "gettext" + depends_on "gstreamer" + # The set of optional dependencies is based on the intersection of # gst-plugins-base-0.10.35/REQUIREMENTS and Homebrew formulae - depends_on 'gobject-introspection' => :optional - depends_on 'orc' => :optional - depends_on 'gtk+' => :optional - depends_on 'libogg' => :optional - depends_on 'pango' => :optional - depends_on 'theora' => :optional - depends_on 'libvorbis' => :optional + depends_on "gobject-introspection" + depends_on "orc" => :optional + depends_on "gtk+" => :optional + depends_on "libogg" => :optional + depends_on "pango" => :optional + depends_on "theora" => :optional + depends_on "libvorbis" => :optional def install @@ -46,6 +43,7 @@ class GstPluginsBase < Formula --disable-xshm --disable-debug --disable-dependency-tracking + --enable-introspection=yes ] if build.head? |
