1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/audio/opus/Makefile
Christian Weisgerber 56ba5294e6 Update opus to 1.1, which includes:
* new analysis code and tuning that significantly improves encoding
  quality, especially for variable-bitrate (VBR),
* automatic detection of speech or music to decide which encoding
  mode to use,
* surround with good quality at 128 kbps for 5.1 and usable down
  to 48 kbps,
* and speed improvements on all architectures.

Chase shared library bump.

PR:		184956
2013-12-18 16:04:49 +00:00

31 lines
619 B
Makefile

# $FreeBSD$
PORTNAME= opus
PORTVERSION= 1.1
CATEGORIES= audio
MASTER_SITES= http://downloads.xiph.org/releases/opus/ \
https://ftp.mozilla.org/pub/mozilla.org/opus/
MAINTAINER= naddy@FreeBSD.org
COMMENT= IETF audio codec
USES= gmake pathfix
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-custom-modes \
--disable-maintainer-mode \
--disable-doc # requires doxygen
regression-test: build
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check
.include <bsd.port.options.mk>
.if ${ARCH} == "arm"
CONFIGURE_ARGS+=--enable-fixed-point
.endif
.include <bsd.port.mk>