51ca9a5ce8
Vamp is an audio processing plugin system for plugins that extract descriptive information from audio typically referred to as audio analysis plugins or audio feature extraction plugins. Just like an audio effects plugin (such as a VST), a Vamp plugin is a binary module that can be loaded up by a host application and fed audio data. However, unlike an effects plugin, a Vamp plugin generates not more audio, but some sort of symbolic information. Typical things that a Vamp plugin might calculate include the locations of moments such as note onset times, visualisable representations of the audio such as spectrograms, or curve data such as power or fundamental frequency.
31 lines
902 B
Makefile
31 lines
902 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/12/27 23:35:33 kamil Exp $
|
|
|
|
# During upgrade please adjust files/wscript and doublecheck libs major/minor
|
|
DISTNAME= vamp-plugin-sdk-2.6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://code.soundsoftware.ac.uk/attachments/download/1520/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.vamp-plugins.org/
|
|
COMMENT= The Vamp audio analysis plugin system
|
|
LICENSE= x11
|
|
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
PKGCONFIG_OVERRIDE+= pkgconfig/vamp-hostsdk.pc.in
|
|
PKGCONFIG_OVERRIDE+= pkgconfig/vamp-sdk.pc.in
|
|
PKGCONFIG_OVERRIDE+= pkgconfig/vamp.pc.in
|
|
|
|
BUILD_DEPENDS+= waf-[0-9]*:../../devel/waf
|
|
|
|
pre-patch:
|
|
${RUN} cp ${FILESDIR}/wscript ${WRKSRC}
|
|
|
|
.include "../../devel/waf/waf.mk"
|
|
# Missing --mandir
|
|
WAF_ARGS=
|
|
.include "../../math/fftw/buildlink3.mk"
|
|
.include "../../math/fftwf/buildlink3.mk"
|
|
.include "../../audio/libsndfile/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|