mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ccd2cue
* gnu/packages/cdrom.scm (ccd2cue): New variable.
This commit is contained in:
parent
b02a141f3e
commit
a9406b2416
1 changed files with 25 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
||||
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2017 John Darrington <jmd@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -496,3 +497,27 @@ (define-public ripit
|
|||
(synopsis "Command-line program to extract audio CDs")
|
||||
(description "RipIT is used to extract audio from CDs.")
|
||||
(license gpl2)))
|
||||
|
||||
(define-public ccd2cue
|
||||
(package
|
||||
(name "ccd2cue")
|
||||
(version "0.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://gnu/ccd2cue/ccd2cue-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1icrkg25hwx4gsn3dski2172ia4ywjh8m1sa17zmjclnrgdwy9c7"))))
|
||||
(build-system gnu-build-system)
|
||||
(synopsis "CCD to CUE sheet conversion")
|
||||
(description
|
||||
"GNU ccd2cue is a preprocessor for CD burning software that allows
|
||||
the conversion of the proprietary CCD format to the CUE format, which
|
||||
is well-supported by free software. These files are commonly
|
||||
distributed with CD images and are used to describe how tracks are
|
||||
laid out on the image.")
|
||||
(home-page "http://www.gnu.org/software/ccd2cue")
|
||||
(license gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue