a48111e35b
SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or files: * Tempo (time-stretch): changes the sound to play at faster or slower speed than original, without affecting the sound pitch * Pitch (key): changes the sound pitch or key, without affecting the sound tempo or speed * Playback Rate: changes both the sound tempo and pitch, as if an LP disc was played at wrong RPM rate ok jakemsr@
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/12/08 11:05:58 ajacoutot Exp $
|
|
|
|
COMMENT= tempo/pitch audio processing library
|
|
|
|
DISTNAME= soundtouch-1.3.1
|
|
SHARED_LIBS += BPM 0.0 # .0.0
|
|
SHARED_LIBS += SoundTouch 0.0 # .0.0
|
|
CATEGORIES= audio devel
|
|
|
|
HOMEPAGE= http://www.surina.net/soundtouch/
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB= c m stdc++
|
|
|
|
BUILD_DEPENDS= :autoconf-${AUTOCONF_VERSION}:devel/autoconf/${AUTOCONF_VERSION} \
|
|
:automake-${AUTOMAKE_VERSION}.*:devel/automake/${AUTOMAKE_VERSION}
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
AUTOCONF_VERSION=2.59
|
|
AUTOMAKE_VERSION=1.9
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
MAKE_FLAGS= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
|
|
CXXFLAGS="${CXXFLAGS}"
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && \
|
|
touch NEWS README AUTHORS ChangeLog && \
|
|
AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
|
|
autoreconf -i
|
|
|
|
.include <bsd.port.mk>
|