From: Ricardo Wurmus <rekado@elephly.net>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: Guix-devel <guix-devel@gnu.org>
Subject: Re: [PATCH 0/4]: Add various audio libraries
Date: Tue, 10 Feb 2015 22:39:18 +0100 [thread overview]
Message-ID: <8761b9qwe1.fsf@mango.localdomain> (raw)
In-Reply-To: <87r3u9e3fk.fsf@gnu.org>
[-- Attachment #1: Type: text/plain, Size: 1191 bytes --]
Ludovic Courtès writes:
>> From 3bb3b7346f44f8e4849efc7a5fc8b465a974d625 Mon Sep 17 00:00:00 2001
>> From: rekado <rekado@elephly.net>
>> Date: Thu, 29 Jan 2015 10:12:00 +0100
>> Subject: [PATCH 4/4] gnu: Add LV2.
>>
>> * gnu/packages/audio.scm (lv2): New variable.
>
> [...]
>
>> + (synopsis "LV2 audio plugin standard")
>> + (description
>> + "LV2 is an open standard for audio plugins and host applications. At its
>> +core, LV2 is a simple stable interface, accompanied by extensions which add
>> +functionality to support the needs of increasingly powerful audio software.")
>
> It’s not clear to me what this all means; I guess LV2 is not a
> “standard” as in RFC or ISO, because it’s software. That said, I don’t
> have any suggestions, so I’ll leave it up to your creativity. :-)
I changed it from "standard" to "specification" because it's neither a
"standard" in RFC or ISO sense, nor is it software. It's ttl files that
outline feature. These specifications can be turned into code or
workable data; they serve as an interface declaration, so I think
"specification" is really the most appropriate term here.
Attached is the new patch.
~~ Ricardo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-LV2.patch --]
[-- Type: text/x-patch, Size: 1836 bytes --]
From 02ae9dbb1c344187d0b9e5328533a8aed16d081a Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Thu, 5 Feb 2015 22:40:06 +0100
Subject: [PATCH] gnu: Add LV2.
* gnu/packages/audio.scm (lv2): New variable.
---
gnu/packages/audio.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 9227367..f83c5d2 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -158,3 +158,33 @@ synchronous execution of all clients, and low latency operation.")
"liblo is a lightweight library that provides an easy to use
implementation of the Open Sound Control (OSC) protocol.")
(license license:lgpl2.1+)))
+
+(define-public lv2
+ (package
+ (name "lv2")
+ (version "1.10.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://lv2plug.in/spec/lv2-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1md41x9snrp4mcfyli7lyfpvcfa78nfy6xkdy84kppnl8m5qw378"))))
+ (build-system waf-build-system)
+ (arguments
+ `(#:tests? #f ; no check target
+ #:configure-flags '("--lv2-system")))
+ (inputs
+ ;; Leaving off cairo and gtk+-2.0 which are needed for example plugins
+ `(("libsndfile" ,libsndfile)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://lv2plug.in/")
+ (synopsis "LV2 audio plugin specification")
+ (description
+ "LV2 is an open specification for audio plugins and host applications.
+At its core, LV2 is a simple stable interface, accompanied by extensions which
+add functionality to support the needs of increasingly powerful audio
+software.")
+ (license license:isc)))
--
2.1.0
next prev parent reply other threads:[~2015-02-10 21:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-29 10:27 [PATCH 0/4]: Add various audio libraries Ricardo Wurmus
2015-02-01 21:18 ` Ludovic Courtès
2015-02-10 21:39 ` Ricardo Wurmus [this message]
2015-02-11 22:36 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8761b9qwe1.fsf@mango.localdomain \
--to=rekado@elephly.net \
--cc=guix-devel@gnu.org \
--cc=ludo@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).