mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: vlc: Enable libdvdread and libdvdcss support.
* gnu/packages/video.scm (libdvdread): Compile with libdvdcss support; (vlc): Add libdvdread as input.
This commit is contained in:
parent
690c9c18a5
commit
d5456444f7
1 changed files with 8 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
|
||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -831,6 +832,7 @@ (define-public vlc
|
|||
("libcddb" ,libcddb)
|
||||
("libdvbpsi" ,libdvbpsi)
|
||||
("libgcrypt" ,libgcrypt)
|
||||
("libdvdread" ,libdvdread)
|
||||
("libkate" ,libkate)
|
||||
("libmad" ,libmad)
|
||||
("libogg" ,libogg)
|
||||
|
@ -1359,6 +1361,12 @@ (define-public libdvdread
|
|||
(build-system gnu-build-system)
|
||||
(home-page "http://dvdnav.mplayerhq.hu/")
|
||||
(synopsis "Library for reading video DVDs")
|
||||
(arguments
|
||||
`(#:configure-flags '("--with-libdvdcss=yes")))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("libdvdcss" ,libdvdcss)))
|
||||
(description
|
||||
"Libdvdread provides a simple foundation for reading DVD video
|
||||
disks. It provides the functionality that is required to access many
|
||||
|
|
Loading…
Reference in a new issue