diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-02-05 22:40:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-02-09 09:21:36 +0100 |
commit | d55f912a3146cd5c7ff997bf7b9e4ca4fc21828e (patch) | |
tree | 8aa6b96fbe9f99722944c7a54fd305acd77abf16 /gnu/packages | |
parent | f47cba0efb0adeffb7fe679683a6a010f100c4a6 (diff) | |
download | guix-d55f912a3146cd5c7ff997bf7b9e4ca4fc21828e.tar.gz guix-d55f912a3146cd5c7ff997bf7b9e4ca4fc21828e.zip |
gnu: Add aubio.
* gnu/packages/audio.scm (aubio): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index e8bcd82508..9227367dcd 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -24,15 +24,56 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system waf) #:use-module (gnu packages) + #:use-module (gnu packages algebra) #:use-module (gnu packages databases) #:use-module (gnu packages glib) ;dbus #:use-module (gnu packages linux) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pulseaudio) ;libsndfile, libsamplerate + #:use-module (gnu packages python) #:use-module (gnu packages readline) #:use-module (gnu packages xiph) #:use-module (gnu packages xml)) +(define-public aubio + (package + (name "aubio") + (version "0.4.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://aubio.org/pub/aubio-" version ".tar.bz2")) + (sha256 + (base32 + "15f6nf76y7iyl2kl4ny7ky0zpxfxr8j3902afvd6ydnnkh5dzmr5")))) + (build-system waf-build-system) + (arguments + `(#:tests? #f ; no check target + #:configure-flags + '("--enable-fftw3f" + "--enable-jack" + "--enable-sndfile" + "--enable-samplerate" + ;; enable compilation with avcodec once available + "--disable-avcodec") + #:python ,python-2)) + (inputs + `(("jack" ,jack-1) + ("libuuid" ,util-linux) + ("libsndfile" ,libsndfile) + ("libsamplerate" ,libsamplerate) + ("fftwf" ,fftwf))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://aubio.org/") + (synopsis "A library for audio labelling") + (description + "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.") + (license license:gpl3+))) + (define-public jack-1 (package (name "jack") |