libmms: new package

LibMMS is a common library for parsing mms:// and mmsh:// type network
streams.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Sven Neumann 2009-07-23 15:46:07 +02:00 committed by Peter Korsgaard
parent f917e6b21b
commit 56938f1873
3 changed files with 29 additions and 0 deletions

View File

@ -11,6 +11,7 @@ source "package/multimedia/gst-plugins-bad/Config.in"
source "package/multimedia/gst-plugins-ugly/Config.in"
source "package/multimedia/libid3tag/Config.in"
source "package/multimedia/libmad/Config.in"
source "package/multimedia/libmms/Config.in"
source "package/multimedia/libmpd/Config.in"
source "package/multimedia/libogg/Config.in"
source "package/multimedia/libsndfile/Config.in"

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_LIBMMS
bool "libmms"
select BR2_PACKAGE_LIBGLIB2
help
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.
http://launchpad.net/libmms

View File

@ -0,0 +1,17 @@
#############################################################
#
# libmms
#
#############################################################
LIBMMS_VERSION = 0.4
LIBMMS_SOURCE = libmms-$(LIBMMS_VERSION).tar.gz
LIBMMS_SITE = http://launchpad.net/libmms/trunk/$(LIBMMS_VERSION)/+download
LIBMMS_AUTORECONF = NO
LIBMMS_LIBTOOL_PATCH = NO
LIBMMS_INSTALL_STAGING = YES
LIBMMS_INSTALL_TARGET = YES
LIBMMS_DEPENDENCIES = uclibc host-pkgconfig libglib2
$(eval $(call AUTOTARGETS,package/multimedia,libmms))