diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-05-15 14:08:38 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-05-15 14:08:38 +0000 |
commit | 842ab2252d07d66483570330aa7fa5c43d614ecc (patch) | |
tree | 8b50de12b08e74aa7df9e495f9dc62c78a12722a /audio/soundtouch/Makefile | |
parent | Fix SDK part, so that really usable (diff) |
Add SoundTouch 1.3.0, an open-source audio processing library for changing
the Tempo, Pitch and Playback Rates of audio streams or files.
WWW: http://sky.prohosting.com/oparviai/soundtouch/
Diffstat (limited to 'audio/soundtouch/Makefile')
-rw-r--r-- | audio/soundtouch/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile new file mode 100644 index 000000000000..1d483cd10dcf --- /dev/null +++ b/audio/soundtouch/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: SoundTouch +# Date created: 16 May 2005 +# Whom: Alexey Dokuchaev <danfe@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= soundtouch +DISTVERSION= 1.3.0 +CATEGORIES= audio +MASTER_SITES= http://sky.prohosting.com/oparviai/soundtouch/ +DISTNAME= ${PORTNAME}_v${PORTVERSION} + +MAINTAINER= danfe@FreeBSD.org +COMMENT= An open-source audio processing library + +GNU_CONFIGURE= yes +USE_REINPLACE= yes +USE_ZIP= yes + +WRKSRC= ${WRKDIR}/SoundTouch-${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|; s|$$(prefix)/doc|$$(datadir)/doc|' \ + ${WRKSRC}/source/example/bpm/Makefile.in \ + ${WRKSRC}/source/example/SoundStretch/Makefile.in \ + ${WRKSRC}/source/SoundTouch/Makefile.in \ + ${WRKSRC}/include/Makefile.in ${WRKSRC}/Makefile.in +.if defined(NOPORTDOCS) + @${REINPLACE_CMD} -e 's/ install-pkgdocDATA$$//' \ + ${WRKSRC}/Makefile.in +.endif + +.include <bsd.port.mk> |