mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add cdrdao.
* gnu/packages/cdrom.scm (cdrdao): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e4a4287c5f
commit
f458958543
1 changed files with 51 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
|
||||||
|
;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -38,9 +39,11 @@ (define-module (gnu packages cdrom)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system glib-or-gtk)
|
#:use-module (guix build-system glib-or-gtk)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages acl)
|
#:use-module (gnu packages acl)
|
||||||
#:use-module (gnu packages audio)
|
#:use-module (gnu packages audio)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
|
@ -242,6 +245,54 @@ (define-public cdparanoia
|
||||||
reconstruction capability.")
|
reconstruction capability.")
|
||||||
(license gpl2))) ; libraries under lgpl2.1
|
(license gpl2))) ; libraries under lgpl2.1
|
||||||
|
|
||||||
|
(define-public cdrdao
|
||||||
|
(package
|
||||||
|
(name "cdrdao")
|
||||||
|
(version "1.2.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/cdrdao/cdrdao.git")
|
||||||
|
(commit
|
||||||
|
(string-append "rel_" (string-replace-substring version "." "_")))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1gcl8ibyylamy2d1piq3749nw3xrlp12r0spzp2gmni57b8a6b7j"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags
|
||||||
|
(list
|
||||||
|
;; GCDMaster depends on obsolete libgnomeuimm, see
|
||||||
|
;; <https://github.com/cdrdao/cdrdao/issues/3>.
|
||||||
|
"--without-gcdmaster"
|
||||||
|
;; Use the native SCSI interface.
|
||||||
|
"--without-scglib")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'bootstrap 'fix-configure.ac
|
||||||
|
(lambda _
|
||||||
|
;; Remove reference to missing macro.
|
||||||
|
(substitute* "configure.ac" (("^AM_GCONF_SOURCE_2.*") ""))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("ao" ,ao)
|
||||||
|
("lame" ,lame)
|
||||||
|
("libmad" ,libmad)
|
||||||
|
("libvorbis" ,libvorbis)))
|
||||||
|
(home-page "http://cdrdao.sourceforge.net")
|
||||||
|
(synopsis "Read and write CDs in disk-at-once mode")
|
||||||
|
(description "cdrdao records audio or data CDs in disk-at-once (DAO) mode,
|
||||||
|
based on a textual description of the contents. This mode writes the complete
|
||||||
|
disc – lead-in, one or more tracks, and lead-out – in a single step and is
|
||||||
|
commonly used with audio CDs. @code{cdrdao} can also handle the bin/cue
|
||||||
|
format, commonly used for VCDs or disks with subchannel data.")
|
||||||
|
(license gpl2+)))
|
||||||
|
|
||||||
(define-public cdrtools
|
(define-public cdrtools
|
||||||
(package
|
(package
|
||||||
(name "cdrtools")
|
(name "cdrtools")
|
||||||
|
|
Loading…
Reference in a new issue