88ae050fb4
The Opus codec is designed to handle a wide range of interactive audio applications, including Voice over IP, videoconferencing, in-game chat, and even remote live music performances. It can scale from low bit-rate narrowband speech to very high quality stereo music. ok sthen@
34 lines
690 B
Makefile
34 lines
690 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/07/10 12:11:22 naddy Exp $
|
|
|
|
COMMENT= interactive speech and audio codec
|
|
|
|
DISTNAME= opus-0.9.14
|
|
SHARED_LIBS= opus 0.0 # unknown
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://opus-codec.org/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://downloads.xiph.org/releases/opus/
|
|
|
|
WANTLIB= m
|
|
|
|
USE_LIBTOOL= Yes
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+=--disable-doc # requires doxygen
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
CONFIGURE_ARGS+=--enable-fixed-point
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|