mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: libbluray: Upgrade to 0.9.1.
* gnu/packages/video.scm (libbluray): Upgrade to 0.9.1. [inputs]: Add "ant" and "icedtea7" to native-inputs. [arguments]: Set environment variable "JAVA_HOME".
This commit is contained in:
parent
e3302fec18
commit
3f9f176b3a
1 changed files with 13 additions and 3 deletions
|
@ -51,6 +51,7 @@ (define-module (gnu packages video)
|
|||
#:use-module (gnu packages gnupg)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages java)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages lua)
|
||||
#:use-module (gnu packages mp3)
|
||||
|
@ -812,7 +813,7 @@ (define-public youtube-dl
|
|||
(define-public libbluray
|
||||
(package
|
||||
(name "libbluray")
|
||||
(version "0.7.0")
|
||||
(version "0.9.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://download.videolan.org/videolan/"
|
||||
|
@ -820,9 +821,18 @@ (define-public libbluray
|
|||
name "-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"13dngs4b4cv29f6b825dq14n77mfhvk1kjb42axpq494pfgyp6zp"))))
|
||||
"0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'configure 'java-home
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "JAVA_HOME" (assoc-ref inputs "icedtea7"))
|
||||
#t)))))
|
||||
(native-inputs `(("ant" ,ant)
|
||||
("icedtea7" ,icedtea7 "jdk")
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("doxygen" ,doxygen)
|
||||
("fontconfig" ,fontconfig)
|
||||
|
|
Loading…
Reference in a new issue