193055906a
libdlna aims at being the reference open-source implementation of DLNA (Digital Living Network Alliance) standards. Its primary goal is to provide DLNA support to uShare, an embedded DLNA & UPnP A/V Media Server, but it will be used to build both DLNA servers and players in the long term. libdlna is written in C and relies on FFMPEG librairies (libavformat and libavcodec) to handle and demux A/V streams. You still need libupnp to provide basic UPnP support to your project. libdlna is based on official DLNA specifications and aims at a providing a complete respect of the defined standards. Right now, libdlna can be used to build compliant DLNA Media Servers. libdlna is free software - it is licensed under the terms of the GNU Lesser General Public License (LGPL).
29 lines
688 B
Makefile
29 lines
688 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/05/23 08:03:18 obache Exp $
|
|
#
|
|
|
|
DISTNAME= libdlna-0.2.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://libdlna.geexbox.org/releases/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://libdlna.geexbox.org/
|
|
COMMENT= Reference DLNA open-source implementation
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c
|
|
HAS_CONFIGURE= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
PKGCONFIG_OVERRIDE= libdlna.pc
|
|
PKGCONFIG_OVERRIDE_STAGE= post-configure
|
|
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
CONFIGURE_ARGS+= --with-ffmpeg-dir=${BUILDLINK_PREFIX.ffmpeg}
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.include "../../multimedia/ffmpeg/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|