ac8e9e2536
SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or audio files Tempo (time stretch): Changes the sound to play at faster or slower tempo than originally without affecting the sound pitch. Pitch (key): Changes the sound pitch or key while keeping the original tempo (speed). Playback Rate: Changes both tempo and pitch together as if a vinyl disc was played at different RPM rate. The SoundTouch library is intended for application developers writing sound processing tools that require tempo/pitch control functionality, or just for playing around with the sound effects.
26 lines
691 B
Makefile
26 lines
691 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/08/07 20:23:27 wiz Exp $
|
|
|
|
DISTNAME= soundtouch-1.8.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"
|