[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add cd-discid.
From: |
Ludovic Courtès |
Subject: |
03/07: gnu: Add cd-discid. |
Date: |
Sat, 29 Nov 2014 21:35:10 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit e2bb5fd627096dca1f3da6a6ad1ff9ebf18ecbca
Author: Ludovic Courtès <address@hidden>
Date: Sat Nov 29 20:48:15 2014 +0100
gnu: Add cd-discid.
* gnu/packages/cdrom.scm (cd-discid): New variable.
---
gnu/packages/cdrom.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm
index 0780857..02e3feb 100644
--- a/gnu/packages/cdrom.scm
+++ b/gnu/packages/cdrom.scm
@@ -217,3 +217,33 @@ files. Dvdisaster works at the image level so that the
recovery does not
depend on the file system of the medium. The maximum error correction
capacity is user-selectable.")
(license gpl2+)))
+
+(define-public cd-discid
+ (package
+ (name "cd-discid")
+ (version "1.4")
+ (home-page "http://linukz.org/cd-discid.shtml")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append home-page "/download/cd-discid-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0qrcvn7227qaayjcd5rm7z0k5q89qfy5qkdgwr5pd7ih0va8rmpz"))
+ (modules '((guix build utils)))
+ (snippet
+ '(substitute* "Makefile"
+ (("/usr/bin/install")
+ "install")))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases (alist-delete 'configure %standard-phases)
+ #:make-flags (list "CC=gcc"
+ (string-append "PREFIX="
+ (assoc-ref %outputs "out")))))
+ (synopsis "Get CDDB discid information from an audio CD")
+ (description
+ "cd-discid is a command-line tool to retrieve CDDB discid information
+from an audio CD.")
+ (license gpl2+)))
- branch master updated (1cc8f3a -> f5d9604), Ludovic Courtès, 2014/11/29
- 03/07: gnu: Add cd-discid.,
Ludovic Courtès <=
- 05/07: gnu: wireless-tools: Install the manual pages under $out/share/man., Ludovic Courtès, 2014/11/29
- 04/07: gnu: Add abcde., Ludovic Courtès, 2014/11/29
- 07/07: gnu-maintenance: Support .zip files., Ludovic Courtès, 2014/11/29
- 06/07: gnu: Add mg., Ludovic Courtès, 2014/11/29
- 02/07: gnu: guix: Update snapshot., Ludovic Courtès, 2014/11/29
- 01/07: doc: Improve porting instructions., Ludovic Courtès, 2014/11/29