[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: Add lv2toweb.
From: |
guix-commits |
Subject: |
07/08: gnu: Add lv2toweb. |
Date: |
Mon, 23 Mar 2020 05:48:34 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 670da39888170d8f6acb9d0f2cf724b02c9f7ccb
Author: Alexandros Theodotou <address@hidden>
AuthorDate: Sat Mar 21 19:38:41 2020 +0000
gnu: Add lv2toweb.
* gnu/packages/audio.scm (lv2toweb): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/audio.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index f3edd21..bad6f4a 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -78,6 +78,7 @@
#:use-module (gnu packages libusb)
#:use-module (gnu packages linux)
#:use-module (gnu packages llvm)
+ #:use-module (gnu packages man)
#:use-module (gnu packages maths)
#:use-module (gnu packages mp3) ;taglib
#:use-module (gnu packages multiprecision)
@@ -4081,3 +4082,39 @@ given plugin and its UI(s) match up with the provided
metadata and adhere
to well-known best practices.")
(home-page "https://open-music-kontrollers.ch/lv2/lv2lint/";)
(license license:artistic2.0)))
+
+(define-public lv2toweb
+ (package
+ (name "lv2toweb")
+ (version "0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/x42/lv2toweb";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "007aysqvgkf25za8nkmyd5g9kp1zla460dcpidlj5xg1zc3fcdfi"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no "check" target
+ #:make-flags (list "CC=gcc"
+ (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (inputs
+ `(("jalv", jalv)
+ ("lilv", lilv)))
+ (native-inputs
+ `(("help2man", help2man)
+ ("pkg-config", pkg-config)))
+ (synopsis "Documentation generator for LV2 plugins")
+ (description
+ "lv2toweb allows the user to create an xhtml page with information
+about the given LV2 plugin, provided that the plugin and its UI(s) match up
+with the provided metadata and adhere to well-known best practices.")
+ (home-page "https://github.com/x42/lv2toweb";)
+ (license (list license:isc license:gpl2))))
- branch master updated (1eb27d5 -> 591faab), guix-commits, 2020/03/23
- 03/08: ui: Add 'indented-string'., guix-commits, 2020/03/23
- 04/08: deploy: Show what machines will be deployed., guix-commits, 2020/03/23
- 01/08: ssh: 'send-files' reports missing modules on the remote host., guix-commits, 2020/03/23
- 02/08: machine: ssh: Make sanity checks in a single round trip., guix-commits, 2020/03/23
- 08/08: gnu: Add python-gcovr., guix-commits, 2020/03/23
- 06/08: machine: ssh: Better report missing initrd modules., guix-commits, 2020/03/23
- 07/08: gnu: Add lv2toweb.,
guix-commits <=
- 05/08: deploy: Write a message upon successful deployment., guix-commits, 2020/03/23