Skip to content
Snippets Groups Projects
Commit c1718190 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

gnu: Add lvtk.

* gnu/packages/audio.scm (lvtk): New variable.
parent 4ed20663
No related branches found
No related tags found
No related merge requests found
......@@ -336,6 +336,39 @@ (define-public lv2
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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment