pkgsrc/audio/aubio/Makefile
ryoon 209676a9f3 Import aubio-0.3.2 from wip/aubio
aubio is a tool designed for the extraction of annotations from audio
signals. Its features include segmenting a sound file before each of
its attacks, performing pitch detection, tapping the beat and
producing midi streams from live audio.

Because these tasks are difficult, we thought it was important to
gather them in a dedicated library. To increase the fun, we have made
these algorithms work in a causal way, so as to be used in real time
applications with as low delay as possible. Functions can be used
offline in sound editors and software samplers, or online in audio
effects and virtual instruments.

aubio currently provides the following features:
    - digital filters
    - phase vocoder
    - onset detection (several methods)
    - pitch tracking (several methods)
    - beat and tempo tracking
    - mel frequency cepstrum coefficients (MFCC)
    - transient / steady-state separation
2011-10-06 11:45:47 +00:00

33 lines
830 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2011/10/06 11:45:47 ryoon Exp $
#
DISTNAME= aubio-0.3.2
CATEGORIES= audio
MASTER_SITES= http://aubio.org/pub/
MAINTAINER= pho@cielonegro.org
HOMEPAGE= http://aubio.org/
COMMENT= Extracting annotations from audio signals
LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config
PKGCONFIG_OVERRIDE+= aubio.pc.in
# Python related variables:
PY_PATCHPLIST= yes
PYTHON_PATCH_SCRIPTS= python/aubiocut python/aubiopitch
.include "options.mk"
.include "../../audio/libsamplerate/buildlink3.mk"
.include "../../audio/libsndfile/buildlink3.mk"
.include "../../devel/swig/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.include "../../math/fftw/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"