summaryrefslogtreecommitdiff
path: root/audio/aubio/options.mk
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2011-10-06 11:45:47 +0000
committerryoon <ryoon@pkgsrc.org>2011-10-06 11:45:47 +0000
commitbfa4264d96437befbea5d1c0d2c30fdf277d71a5 (patch)
treeca685fba107c3ba0d7c9e0bd6cb0b58a8f2d6c0c /audio/aubio/options.mk
parentc586e77673d2f6151d9b811d44a1f818cdc2f74a (diff)
downloadpkgsrc-bfa4264d96437befbea5d1c0d2c30fdf277d71a5.tar.gz
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
Diffstat (limited to 'audio/aubio/options.mk')
-rw-r--r--audio/aubio/options.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/audio/aubio/options.mk b/audio/aubio/options.mk
new file mode 100644
index 00000000000..5cc04d02d94
--- /dev/null
+++ b/audio/aubio/options.mk
@@ -0,0 +1,17 @@
+# $NetBSD: options.mk,v 1.1.1.1 2011/10/06 11:45:48 ryoon Exp $
+#
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.aubio
+PKG_SUPPORTED_OPTIONS= jack alsa
+PKG_SUGGESTED_OPTIONS= jack alsa
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mjack)
+. include "../../audio/jack/buildlink3.mk"
+.endif
+
+.if !empty(PKG_OPTIONS:Malsa)
+. include "../../audio/alsa-lib/buildlink3.mk"
+. include "../../audio/jack/buildlink3.mk"
+.endif