1b807c0bbe
CELT is an ultra-low-delay audio codec designed for high-quality communications. Its potential uses include video-conferencing and network music performance. The code is still in early stage, so it may be broken from time to time. NOTE: The API is not frozen yet, so it is different from one version to another.
15 lines
371 B
Makefile
15 lines
371 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2008/12/03 00:44:49 bjs Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.celt
|
|
PKG_SUPPORTED_OPTIONS= ogg
|
|
PKG_SUGGESTED_OPTIONS= ogg
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
CONFIGURE_ARGS+= --with-ogg=${BUILDLINK_PREFIX.libogg:Q}
|
|
. include "../../multimedia/libogg/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ogg
|
|
.endif
|