aaeb6284b2
Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. With just a few lines of code, a programmer can easily turn any application into a streaming source for an icecast server. Libshout also allows developers who want a specific feature set (database access, request taking) to concentrate on that feature set, instead of worrying about how server communication works. from Moritz Grimm <gtgbr@gmx.net>, cleanup and patches from me WWW: http://www.icecast.org/
30 lines
655 B
Makefile
30 lines
655 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/07/26 11:38:50 sturm Exp $
|
|
|
|
COMMENT= "library for communicating with an icecast server"
|
|
|
|
DISTNAME= libshout-2.0
|
|
CATEGORIES= net audio
|
|
|
|
HOMEPAGE= http://www.icecast.org/
|
|
|
|
MAINTAINER= Moritz Grimm <gtgbr@gmx.net>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://icecast.org/files/libshout/
|
|
|
|
LIB_DEPENDS= vorbis.2,vorbisenc.2,vorbisfile.3::audio/libvorbis
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} --disable-pkgconfig
|
|
|
|
SEPARATE_BUILD= simple
|
|
|
|
FAKE_FLAGS= docdir='${PREFIX}/share/examples/libshout'
|
|
|
|
.include <bsd.port.mk>
|