guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/3] gnu: Add libcue.


From: Paul van der Walt
Subject: [PATCH 2/3] gnu: Add libcue.
Date: Mon, 19 Oct 2015 13:20:48 +0200

* gnu/packages/cdrom.scm (libcue): New variable.
---
 gnu/packages/cdrom.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm
index 62a6040..2453481 100644
--- a/gnu/packages/cdrom.scm
+++ b/gnu/packages/cdrom.scm
@@ -231,6 +231,28 @@ depend on the file system of the medium.  The maximum 
error correction
 capacity is user-selectable.")
     (license gpl2+)))
 
+(define-public libcue
+  (package
+    (name "libcue")
+    (version "1.4.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://sourceforge/libcue/libcue-"
+                                 version ".tar.bz2"))
+             (sha256
+              (base32
+               "17kjd7rjz1bvfn44n3n2bjb7a1ywd0yc0g4sqp5ihf9b5bn7cwlb"))))
+    (build-system gnu-build-system)
+    (home-page "http://libcue.sourceforge.net/";)
+    (synopsis "C library to parse cue sheets")
+    (description "Libcue is intended to parse a so called cue sheet from a
+char string or a file pointer.  For handling of the parsed data a convenient
+API is available.
+
+This project is meant as a fork of cuetools by Svend Sorensen which saw its
+last release in 02/2006.")
+    (license gpl2+)))
+
 (define-public cd-discid
   (package
     (name "cd-discid")
-- 
2.6.1




reply via email to

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