diff options
| author | James Dumay | 2012-07-21 13:01:28 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-24 10:09:21 -0700 |
| commit | e00c1ac294949e1e2482a2cbd014ae593c1bd067 (patch) | |
| tree | 74552c7714a564dc7d6c9f3488036250eb2fec2c /Library/Formula | |
| parent | 02f66b5ef7ff339a3ac68f6d87b749674fef0a75 (diff) | |
| download | homebrew-e00c1ac294949e1e2482a2cbd014ae593c1bd067.tar.bz2 | |
gst-plugins-base: add --prefix
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gst-plugins-base.rb | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/Library/Formula/gst-plugins-base.rb b/Library/Formula/gst-plugins-base.rb index 6fad02818..9cc1b9929 100644 --- a/Library/Formula/gst-plugins-base.rb +++ b/Library/Formula/gst-plugins-base.rb @@ -19,19 +19,23 @@ class GstPluginsBase < Formula depends_on 'libvorbis' => :optional def install - # gnome-vfs turned off due to lack of formula for it. MacPorts has it. - system "./configure", *%w[--disable-debug - --disable-dependency-tracking - --enable-introspection=no - --enable-experimental - --disable-libvisual - --disable-alsa - --disable-cdparanoia - --without-x - --disable-x - --disable-xvideo - --disable-xshm - --disable-gnome_vfs] + # gnome-vfs turned off due to lack of formula for it. + args = %W[ + --prefix=#{prefix} + --disable-debug + --disable-dependency-tracking + --enable-introspection=no + --enable-experimental + --disable-libvisual + --disable-alsa + --disable-cdparanoia + --without-x + --disable-x + --disable-xvideo + --disable-xshm + --disable-gnome_vfs + ] + system "./configure", *args system "make" system "make install" end |
