gnu: libx264: Update to 159-0.1771b55.
* gnu/packages/video.scm (libx264): Update to 159-0.1771b55. [source]: Change to GIT-FETCH. [version]: Use GIT-VERSION, and change from date-based identifier to the version defined in x264.h.
This commit is contained in:
parent
82ca7b2a3a
commit
c0fe2e1f03
1 changed files with 52 additions and 45 deletions
|
|
@ -23,7 +23,7 @@
|
|||
;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
|
||||
;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
|
||||
;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2018, 2019 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Brendan Tildesley <mail@brendan.scot>
|
||||
|
|
@ -337,16 +337,23 @@ a shared library and encoder and decoder command-line executables.")
|
|||
(license license:gpl2+)))
|
||||
|
||||
(define-public libx264
|
||||
;; There are no tags in the repository, so we take the version number from
|
||||
;; the X264_BUILD variable defined in x264.h.
|
||||
(let ((version "159")
|
||||
(commit "1771b556ee45207f8711744ccbd5d42a3949b14c")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "libx264")
|
||||
(version "20180810-2245")
|
||||
(version (git-version version revision commit))
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.videolan.org/pub/x264/snapshots/"
|
||||
"x264-snapshot-" version "-stable.tar.bz2"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://code.videolan.org/videolan/x264.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0f25f39imas9pcqm7lnaa0shhjmf42hdx7jxzcnvxc7qsb7lh1bv"))))
|
||||
"0kmi78gs5101d4df33il5bmjbns54nvdjsyn44xiw60lwsg11vwz"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
|
@ -382,7 +389,7 @@ H.264 (MPEG-4 AVC) video streams.")
|
|||
license:bsd-3 ;extras/inttypes.h
|
||||
(license:non-copyleft ;extras/cl*.h
|
||||
"file://extras/cl.h"
|
||||
"See extras/cl.h in the distribution.")))))
|
||||
"See extras/cl.h in the distribution."))))))
|
||||
|
||||
(define-public mkvtoolnix
|
||||
(package
|
||||
|
|
|
|||
Reference in a new issue