blob: d7a5d8a7e07b1c2306a2a9965858630113ab077d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require 'formula'
class GstPluginsBase < Formula
homepage 'http://gstreamer.freedesktop.org/'
url 'http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.32.tar.bz2'
md5 '2920af2b3162f3d9fbaa7fabc8ed4d38'
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.32/REQUIREMENTS and Homebrew formulas
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
system "autoreconf -f -i" unless File.exist? "configure"
# gnome-vfs turned off due to lack of formula for it. MacPorts has it.
system "./configure", "--prefix=#{prefix}", "--disable-debug",
"--disable-dependency-tracking", "--enable-experimental",
"--disable-libvisual", "--disable-gst_v4l", "--disable-alsa",
"--disable-cdparanoia", "--without-x", "--disable-x", "--disable-xvideo",
"--disable-xshm", "--disable-gnome_vfs"
system "make"
system "make install"
end
end
|