>From bb21a1ba7885ea46514cc2eb5db2057a47de76d4 Mon Sep 17 00:00:00 2001 From: rekado Date: Thu, 29 Jan 2015 23:10:31 +0100 Subject: [PATCH 4/5] gnu: Add lilv. * gnu/packages/audio.scm (lilv): New variable. --- gnu/packages/audio.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 744cf84..7f5c58a 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -159,6 +159,35 @@ synchronous execution of all clients, and low latency operation.") implementation of the Open Sound Control (OSC) protocol.") (license license:lgpl2.1+))) +(define-public lilv + (package + (name "lilv") + (version "0.20.0") + (source (origin + (method url-fetch) + (uri (string-append "http://download.drobilla.net/lilv-" + version + ".tar.bz2")) + (sha256 + (base32 + "0aj2plkx56iar8vzjbq2l7hi7sp0ml99m0h44rgwai2x4vqkk2j2")))) + (build-system waf-build-system) + (arguments `(#:tests? #f)) ; no check target + (inputs + `(("lv2" ,lv2) + ("serd" ,serd) + ("sord" ,sord) + ("sratom" ,sratom))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://drobilla.net/software/lilv/") + (synopsis "Library to simplify use of LV2 plugins in applications") + (description + "Lilv is a C library to make the use of LV2 plugins as simple as possible +for applications. Lilv is the successor to SLV2, rewritten to be +significantly faster and have minimal dependencies.") + (license license:isc))) + (define-public lv2 (package (name "lv2") -- 2.1.0