e08657c344
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>
16 lines
458 B
Ruby
16 lines
458 B
Ruby
require 'formula'
|
|
|
|
class Libmms < Formula
|
|
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
|
|
end
|