324b6af713
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.
15 lines
395 B
Ruby
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
|