[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/12: gnu: Add libltc.
From: |
guix-commits |
Subject: |
04/12: gnu: Add libltc. |
Date: |
Wed, 13 Nov 2019 18:18:51 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 0f2ce4480049469332d3f2e6a4df8d4c3ebb0560
Author: Alexandros Theodotou <address@hidden>
Date: Fri Nov 8 10:45:11 2019 +0000
gnu: Add libltc.
* gnu/packages/audio.scm: (libltc): New variable.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/audio.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 7288fa1..93e004f 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2019 Rutger Helling <address@hidden>
;;; Copyright © 2019 Arun Isaac <address@hidden>
;;; Copyright © 2019 Mathieu Othacehe <address@hidden>
+;;; Copyright © 2019 Alexandros Theodotou <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -63,6 +64,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages curl)
#:use-module (gnu packages dbm)
+ #:use-module (gnu packages documentation)
#:use-module (gnu packages emacs)
#:use-module (gnu packages file)
#:use-module (gnu packages flex)
@@ -3765,3 +3767,28 @@ other Gnaural instances, allowing synchronous sessions
between many users.")
a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio
stream to one or more IceCast and/or ShoutCast servers.")
(license license:gpl3+)))
+
+(define-public libltc
+ (package
+ (name "libltc")
+ (version "1.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://github.com/x42/libltc/releases/download/v"
+ version "/libltc-" version ".tar.gz"))
+ (sha256
+ (base32
+ "173h9dgmain3nyrwk6q2d7yl4fnh4vacag4s2p01n5b7nyrkxrjh"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:parallel-tests? #f)) ;tests fail otherwise
+ (native-inputs
+ `(("doxygen" ,doxygen)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "Encode or decode Linear/Longitudinal Time Code (LTC) audio")
+ (description "Libltc is a POSIX-C Library for handling
+@dfn{Linear/Longitudinal Time Code} (LTC) data.")
+ (home-page "https://x42.github.io/libltc/")
+ (license license:lgpl3+)))
- branch master updated (35338b5 -> bcf851b), guix-commits, 2019/11/13
- 01/12: gnu: sratom: Propagate required inputs., guix-commits, 2019/11/13
- 03/12: gnu: Add sherlock-lv2., guix-commits, 2019/11/13
- 02/12: gnu: sratom: Adjust indentation., guix-commits, 2019/11/13
- 04/12: gnu: Add libltc.,
guix-commits <=
- 06/12: gnu: Add zam-plugins., guix-commits, 2019/11/13
- 07/12: gnu: Add redkite., guix-commits, 2019/11/13
- 09/12: gnu: Add geonkick., guix-commits, 2019/11/13
- 05/12: gnu: Add x42-plugins., guix-commits, 2019/11/13
- 11/12: gnu: Add dpf-plugins., guix-commits, 2019/11/13
- 12/12: gnu: Add avldrums-lv2., guix-commits, 2019/11/13
- 08/12: gnu: redkite: Do not use unstable tarball., guix-commits, 2019/11/13
- 10/12: gnu: geonkick: Do not use unstable source tarball., guix-commits, 2019/11/13