14e6fb4d0f
Oggfwd is a small tool that reads an Ogg stream from stdin and sends it to an Icecast server using libshout. from Moritz Grimm <mlist at scapa.dnsalias.net>
30 lines
625 B
Makefile
30 lines
625 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/01/14 17:47:57 steven Exp $
|
|
|
|
COMMENT= "pipe an Ogg stream to an Icecast server"
|
|
|
|
DISTNAME= oggfwd-0.2
|
|
CATEGORIES= net multimedia
|
|
|
|
HOMEPAGE= http://v2v.cc/~j/ffmpeg2theora/oggfwd/
|
|
|
|
MAINTAINER= Moritz Grimm <gtgbr@gmx.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c ogg pthread theora vorbis
|
|
|
|
MASTER_SITES= http://v2v.cc/~j/oggfwd/
|
|
|
|
LIB_DEPENDS= shout.>=5::net/libshout \
|
|
speex.>=4::audio/speex
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
pre-build:
|
|
@perl -pi -e 's,/usr/local,${LOCALBASE},' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|