from README.html: 1.9: Added support for parallel computation support via OpenMP primitives for better performance in multicore systems. Benchmarks show that achieved parallel processing speedup improvement typically range from +30% (x86 dual-core) to +180% (ARM quad-core). The OpenMP optimizations are disabled by default, see OpenMP notes above in this readme file how to enabled these optimizations. Android: Added support for Android devices featuring X86 and MIPS CPUs, in addition to ARM CPUs. Android: More versatile Android example application that processes WAV audio files with SoundTouch library Replaced Windows-like 'BOOL' types with native 'bool' Changed documentation token to "dist_doc_DATA" in Makefile.am file Miscellaneous small fixes and improvements
26 lines
695 B
Makefile
26 lines
695 B
Makefile
# $NetBSD: Makefile,v 1.2 2015/07/21 12:16:14 richard Exp $
|
|
|
|
DISTNAME= soundtouch-1.9.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.surina.net/soundtouch/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.surina.net/soundtouch/
|
|
COMMENT= Library for changing the tempo, pitch, and playback rates of audio
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
BUILD_DEPENDS+= libtool-base-[0-9]*:../../devel/libtool-base
|
|
|
|
WRKSRC= ${WRKDIR}/soundtouch
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config autoconf automake autoreconf
|
|
USE_LANGUAGES= c++
|
|
|
|
PKGCONFIG_OVERRIDE+= soundtouch-1.4.pc.in
|
|
PKGCONFIG_OVERRIDE+= soundtouch.pc.in
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoreconf -fi
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|