guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add lvtk.


From: Ricardo Wurmus
Subject: 01/01: gnu: Add lvtk.
Date: Fri, 13 Feb 2015 22:13:44 +0000

rekado pushed a commit to branch master
in repository guix.

commit c1718190d5c4c72a7f68d6f855cd6d86f96f54fc
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Feb 11 21:11:53 2015 +0100

    gnu: Add lvtk.
    
    * gnu/packages/audio.scm (lvtk): New variable.
---
 gnu/packages/audio.scm |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 4f83db8..92ed2ac 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -336,6 +336,39 @@ add functionality to support the needs of increasingly 
powerful audio
 software.")
     (license license:isc)))
 
+(define-public lvtk
+  (package
+    (name "lvtk")
+    (version "1.2.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "https://github.com/lvtk/lvtk/archive/";
+                                 version
+                                 ".tar.gz"))
+             (sha256
+              (base32
+               "03nbj2cqcklqwh50zj2gwm07crh5iwqbpxbpzwbg5hvgl4k4rnjd"))))
+    (build-system waf-build-system)
+    (arguments
+     `(#:tests? #f  ; no check target
+       #:python ,python-2
+       #:configure-flags
+       (list (string-append "--boost-includes="
+                            (assoc-ref %build-inputs "boost")
+                            "/include"))))
+    (inputs
+     `(("boost" ,boost)
+       ("lv2" ,lv2)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/lvtk/lvtk";)
+    (synopsis "C++ libraries for LV2 plugins")
+    (description
+     "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and
+extensions into easy to use C++ classes.  It is the successor of
+lv2-c++-tools.")
+    (license license:gpl3+)))
+
 (define-public rubberband
   (package
     (name "rubberband")



reply via email to

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