e22bc21251
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. ok naddy@
37 lines
649 B
Makefile
37 lines
649 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/02 22:16:02 dcoppa Exp $
|
|
|
|
COMMENT = ultra-low delay audio codec
|
|
|
|
DISTNAME = celt-0.9.1
|
|
|
|
CATEGORIES = audio
|
|
|
|
HOMEPAGE = http://www.celt-codec.org/
|
|
|
|
SHARED_LIBS += celt0 0.0 # 1.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>=5 sndio
|
|
|
|
LIB_DEPENDS = audio/libogg
|
|
|
|
USE_LIBTOOL = Yes
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
CONFIGURE_ARGS = ${CONFIGURE_SHARED} \
|
|
--with-ogg=${LOCALBASE}
|
|
|
|
CONFIGURE_ENV = CPPFLAGS="-DUSE_SNDIO"
|
|
|
|
SEPARATE_BUILD = simple
|
|
|
|
.include <bsd.port.mk>
|