1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add lsdvd.

* gnu/packages/video.scm (lsdvd): New variable.
This commit is contained in:
Alexey Abramov
2025-09-23 19:03:51 +02:00
committed by Ian Eure
parent 1e0eb9e8df
commit 63182d1ac9

View File

@@ -3568,6 +3568,33 @@ authentication and descrambling (if an external libdvdcss library is
installed).")
(license license:gpl2+)))
(define-public lsdvd
(package
(name "lsdvd")
(version "0.17")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.code.sf.net/p/lsdvd/git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1zsk4bwgw0ka44qymv52c5j9igajvdhdj8hlf07p35rpnbl2qzfm"))))
(native-inputs
(list autoconf
automake
pkg-config))
(inputs (list libdvdread))
(build-system gnu-build-system)
(home-page "https://sourceforge.net/projects/lsdvd/")
(synopsis "Console application that lists the contents of a DVD")
(description
"@command{lsdvd} provides output about the types of video, audio tracks
and subtitles. Output is available in a number of formats including human
readable, perl, ruby or xml.")
(license license:gpl2)))
(define-public dvdauthor
(package
(name "dvdauthor")