guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add Vamp SDK.


From: Ricardo Wurmus
Subject: 01/05: gnu: Add Vamp SDK.
Date: Wed, 11 Feb 2015 22:46:26 +0000

rekado pushed a commit to branch master
in repository guix.

commit db46f2fcf4dd515b86c8a3259f4527f1c0280d5c
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Feb 5 22:40:41 2015 +0100

    gnu: Add Vamp SDK.
    
    * gnu/packages/audio.scm (vamp): New variable.
---
 gnu/packages/audio.scm |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 8815a9c..e157a9c 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -280,3 +280,33 @@ that toolkit will work in all hosts that use Suil 
automatically.
 
 Suil currently supports every combination of Gtk 2, Qt 4, and X11.")
     (license license:isc)))
+
+(define-public vamp
+  (package
+    (name "vamp")
+    (version "2.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://code.soundsoftware.ac.uk";
+                    "/attachments/download/690/vamp-plugin-sdk-"
+                    version
+                    ".tar.gz"))
+             (sha256
+              (base32
+               "178kfgq08cmgdzv7g8dwyjp4adwx8q04riimncq4nqkm8ng9ywbv"))))
+    (build-system gnu-build-system)
+    (arguments `(#:tests? #f)) ; no check target
+    (inputs
+     `(("libsndfile" ,libsndfile)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://vamp-plugins.org";)
+    (synopsis "Modular and extensible audio processing system")
+    (description
+     "Vamp is an audio processing plugin system for plugins that extract
+descriptive information from audio data — typically referred to as audio
+analysis plugins or audio feature extraction plugins.")
+    (license
+     (license:x11-style
+      
"https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/repository/entry/COPYING";))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]