mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libdvdnav-4.
* gnu/packages/video.scm (libdvdnav-4): New variable.
This commit is contained in:
parent
a6f710ec4e
commit
f104401095
1 changed files with 27 additions and 0 deletions
|
@ -31,6 +31,7 @@ (define-module (gnu packages video)
|
|||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages algebra)
|
||||
#:use-module (gnu packages audio)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages avahi)
|
||||
#:use-module (gnu packages cdrom)
|
||||
#:use-module (gnu packages compression)
|
||||
|
@ -594,6 +595,32 @@ (define-public libdvdnav
|
|||
encapsulated.")
|
||||
(license gpl2+)))
|
||||
|
||||
(define-public libdvdnav-4
|
||||
(package
|
||||
(inherit libdvdnav)
|
||||
(version "4.2.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"http://download.videolan.org/videolan/libdvdnav/libdvdnav-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0wi3gy408c8xj0ism0hckv5jbfh3lg4pmgxv87gbch9jrhp2gjkz"))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)))
|
||||
(arguments
|
||||
'(#:phases
|
||||
(alist-cons-after
|
||||
'unpack 'autoreconf
|
||||
(lambda _
|
||||
(zero? (system* "autoreconf" "-vif")))
|
||||
%standard-phases)))))
|
||||
|
||||
(define-public libdvdcss
|
||||
(package
|
||||
(name "libdvdcss")
|
||||
|
|
Loading…
Reference in a new issue