aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-01-09 21:21:39 +0100
committerDavid Höppner2010-01-30 14:18:05 +0100
commita4e15f32b0cde5c8a8f6a3f4425b7d4102996c7c (patch)
tree1312f3550125d5a3ff3f750c65dc960b87a7e716 /Library/Formula
parent8c1e39924e6148ee4adc48e4526dc4d963ab66ee (diff)
downloadhomebrew-a4e15f32b0cde5c8a8f6a3f4425b7d4102996c7c.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libmms.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libmms.rb b/Library/Formula/libmms.rb
new file mode 100644
index 000000000..fb3d15cd6
--- /dev/null
+++ b/Library/Formula/libmms.rb
@@ -0,0 +1,15 @@
+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