From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 2/3] gnu: Add libcue. Date: Mon, 19 Oct 2015 13:20:48 +0200 Message-ID: <1445253649-1582-2-git-send-email-paul@denknerd.org> References: <1445253649-1582-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44642) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zo8Uu-0003ph-3I for guix-devel@gnu.org; Mon, 19 Oct 2015 07:21:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zo8Up-0001IJ-7g for guix-devel@gnu.org; Mon, 19 Oct 2015 07:21:00 -0400 Received: from mx01.mykolab.com ([95.128.36.1]:64958 helo=mx-out01.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zo8Up-0001I8-1T for guix-devel@gnu.org; Mon, 19 Oct 2015 07:20:55 -0400 Received: from mx03.mykolab.com (mx03.mykolab.com [10.20.7.101]) by mx-out01.mykolab.com (Postfix) with ESMTPS id AF0506217B for ; Mon, 19 Oct 2015 13:20:52 +0200 (CEST) In-Reply-To: <1445253649-1582-1-git-send-email-paul@denknerd.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * 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