homebrew-core/Formula/libmms.rb
David Höppner 324b6af713 MMS stream protocol library
LibMMS is a common library for parsing mms:// and mmsh:// type network streams.
These are commonly used to stream Windows Media Video content over the web.
LibMMS itself is only for receiving MMS stream, it doesn't handle sending at all.
2010-01-30 14:18:05 +01:00

15 lines
395 B
Ruby

require 'formula'
class Libmms <Formula
url 'http://launchpad.net/libmms/trunk/0.5/+download/libmms-0.5.tar.gz'
homepage 'https://launchpad.net/libmms'
md5 'cf83053ec891f14e73a04c84d9de08ee'
depends_on 'pkg-config'
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end