libmms 0.6.2

This commit updates libmms to version 0.6.2.  Their project is
back at sf.net for hosting, and that's why the change in both url
and homepage. This compiles with llvm-2335, gcc-4.2.1, and clang2.0
on OSX 10.6.8 with XCode 4.0.2. It builds native static and shared
libraries that are used for streaming mmst amd mmsh protocol as in
    mms://i.canhaz.ct:1755
Closes Homebrew/homebrew#7991.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Nibbles 2bits 2011-10-05 21:34:22 -07:00 committed by Jack Nagel
parent 04e00fd67e
commit e08657c344
1 changed files with 4 additions and 3 deletions

View File

@ -1,14 +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'
url 'http://downloads.sourceforge.net/project/libmms/libmms/0.6.2/libmms-0.6.2.tar.gz'
homepage 'http://sourceforge.net/projects/libmms/'
sha1 'cdef62fd1a0e2585dd2111fc94b032f84290e351'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
ENV.append 'LDFLAGS', '-liconv'
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end