homebrew-core/Formula/gst-rtsp.rb
Birger J. Nordølum 6fba71fdb1 Update the the GStreamer packages.
gstreamer-0.10.34
gst-plugins-bad-0.10.22
gst-plugins-base-0.10.34
gst-plugins-good-0.10.29
gst-plugins-ugly-0.10.18
gst-rtsp-0.10.8

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-05 21:42:14 -07:00

20 lines
636 B
Ruby

require 'formula'
class GstRtsp < Formula
homepage 'http://gstreamer.freedesktop.org/'
url 'http://gstreamer.freedesktop.org/src/gst-rtsp/gst-rtsp-0.10.8.tar.bz2'
sha256 '9915887cf8515bda87462c69738646afb715b597613edc7340477ccab63a6617'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'gst-plugins-base'
def install
system "./autogen.sh", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-schemas-install",
"--disable-gtk-doc"
system "make"
system "make install"
end
end