gnu: Add libcdio-paranoia.
* gnu/packages/cdrom.scm (libcdio-paranoia): New variable. * gnu/packages/video.scm (ffmpeg): Add input libcdio-paranoia.
This commit is contained in:
parent
db361234f1
commit
cc6c017066
|
@ -98,6 +98,27 @@ device-dependent properties of CD-ROM or the specific details of CD image
|
|||
formats.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public libcdio-paranoia
|
||||
(package
|
||||
(name "libcdio-paranoia")
|
||||
(version "10.2+0.93+1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/libcdio/libcdio-paranoia-"
|
||||
version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"14x4b4jk5b0zvcalrg02y4jmbkmmlb07qfmk5hph9k18b8frn7gc"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs `(("libcdio" ,libcdio)))
|
||||
(home-page "http://www.gnu.org/software/libcdio/")
|
||||
(synopsis "Jitter- and error-tolerant CD audio extraction")
|
||||
(description
|
||||
"libcdio-paranoia is an implementation of CD paranoia libraries based on
|
||||
libcdio.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public xorriso
|
||||
(package
|
||||
(name "xorriso")
|
||||
|
|
|
@ -178,6 +178,7 @@ SMPTE 314M.")
|
|||
("lame" ,lame)
|
||||
("libbluray" ,libbluray)
|
||||
("libcaca" ,libcaca)
|
||||
("libcdio-paranoia" ,libcdio-paranoia)
|
||||
("libquvi" ,libquvi)
|
||||
("libtheora" ,libtheora)
|
||||
("libvorbis" ,libvorbis)
|
||||
|
@ -223,7 +224,6 @@ SMPTE 314M.")
|
|||
;; --enable-libaacplus enable AAC+ encoding via libaacplus [no]
|
||||
;; --enable-libass enable libass subtitles rendering [no]
|
||||
;; --enable-libcelt enable CELT decoding via libcelt [no]
|
||||
;; --enable-libcdio enable audio CD grabbing with libcdio
|
||||
;; --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
|
||||
;; and libraw1394 [no]
|
||||
;; --enable-libfaac enable AAC encoding via libfaac [no]
|
||||
|
@ -269,6 +269,7 @@ SMPTE 314M.")
|
|||
;; "--enable-gnutls" ; causes test failures
|
||||
"--enable-libbluray"
|
||||
"--enable-libcaca"
|
||||
"--enable-libcdio"
|
||||
"--enable-libfreetype"
|
||||
"--enable-libmp3lame"
|
||||
"--enable-libopus"
|
||||
|
|
Loading…
Reference in New Issue