mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: openh264: Update to 2.3.0 and use gexps.
* gnu/packages/video.scm (openh264): Update to 2.3.0. [arguments]: Use gexps. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
6ff0e43d4e
commit
37ea0a7360
1 changed files with 11 additions and 8 deletions
|
@ -3939,7 +3939,7 @@ (define-public intel-vaapi-driver
|
|||
(define-public openh264
|
||||
(package
|
||||
(name "openh264")
|
||||
(version "2.1.1")
|
||||
(version "2.3.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -3948,17 +3948,20 @@ (define-public openh264
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ffav46pz3sbj92nipd62z03fibyqgclfq9w8lgr80s6za6zdk5s"))))
|
||||
"1yr6nsjpnazq4z6dvjfyanljwgwnyjh3ddxa0sq6hl9qc59yq91r"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list nasm python))
|
||||
(arguments
|
||||
'(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||
"CC=gcc")
|
||||
#:test-target "test"
|
||||
#:phases (modify-phases %standard-phases
|
||||
;; no configure script
|
||||
(delete 'configure))))
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
"CC=gcc")
|
||||
#:test-target "test"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; no configure script
|
||||
(delete 'configure))))
|
||||
(home-page "https://www.openh264.org/")
|
||||
(synopsis "H264 decoder library")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue