4edbb42f5a
The CELT codec is an experimental audio codec for use in low-delay speech and audio communication. It's meant to close the gap between Vorbis and Speex for applications where both high quality audio and low delay are desired. This package contains the celt051 API. ok aja@
35 lines
637 B
Makefile
35 lines
637 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/09/20 17:40:57 jasper Exp $
|
|
|
|
COMMENT = ultra-low delay audio codec (051 API)
|
|
|
|
V = 0.5.1.1
|
|
DISTNAME = celt-$V
|
|
PKGNAME = celt051-$V
|
|
|
|
CATEGORIES = audio
|
|
|
|
HOMEPAGE = http://www.celt-codec.org/
|
|
|
|
SHARED_LIBS += celt051 0.0 # 0.0
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://downloads.xiph.org/releases/celt/
|
|
|
|
WANTLIB = c m ogg
|
|
|
|
LIB_DEPENDS = audio/libogg
|
|
|
|
USE_LIBTOOL = Yes
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
CONFIGURE_ARGS = ${CONFIGURE_SHARED} \
|
|
--with-ogg=${LOCALBASE}
|
|
|
|
.include <bsd.port.mk>
|