emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#38126: closed ([PATCH] gnu: Add libltc.)


From: GNU bug Tracking System
Subject: bug#38126: closed ([PATCH] gnu: Add libltc.)
Date: Wed, 13 Nov 2019 22:26:02 +0000

Your message dated Wed, 13 Nov 2019 23:25:47 +0100
with message-id <address@hidden>
and subject line Re: [bug#38126] [PATCH] gnu: Add libltc.
has caused the debbugs.gnu.org bug report #38126,
regarding [PATCH] gnu: Add libltc.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
38126: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38126
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add libltc. Date: Fri, 08 Nov 2019 11:47:17 +0100 User-agent: Posteo Webmail
From 061201b2179f5ac1c0a3cce89a256d7722c31978 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <address@hidden>
Date: Fri, 8 Nov 2019 10:45:11 +0000
Subject: [PATCH] gnu: Add libltc.

* gnu/packages/audio.scm: (libltc): New variable.
---
 gnu/packages/audio.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 28dbf06f3b..acfd517bee 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.
 ;;;
@@ -3773,3 +3774,30 @@ 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
+     `(#:tests? #f)) ; tests fail
+    (inputs
+     `(("glibc" ,glibc)))
+    (native-inputs
+     `(("doxygen" ,doxygen)
+       ("pkg-config" ,pkg-config)))
+    (synopsis "Linear/Logitudinal Time Code (LTC) Library")
+ (description "Libltc is a POSIX-C Library for handling Linear/Logitudinal
+Time Code (LTC).")
+    (home-page "http://x42.github.io/libltc/";)
+    (license license:lgpl3+)))
--
2.24.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#38126] [PATCH] gnu: Add libltc. Date: Wed, 13 Nov 2019 23:25:47 +0100 User-agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu)
Alexandros Theodotou <address@hidden> writes:

> From 54e5a26b1a2d95370167d09591c2d12bf7b87503 Mon Sep 17 00:00:00 2001
> From: Alexandros Theodotou <address@hidden>
> Date: Fri, 8 Nov 2019 10:45:11 +0000
> Subject: [PATCH] gnu: Add libltc.
>
> * gnu/packages/audio.scm: (libltc): New variable.

This was missing a module import for (gnu packages documentation).

I also tweaked synopsis and description slightly.  Applied, thanks!

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]