gnu: avidemux: Update to 2.7.1.
* gnu/packages/video.scm (avidemux): Update to 2.7.1. [arguments]: Update bundled ffmpeg to 3.3.7.
This commit is contained in:
parent
ad656e70b6
commit
ae63b2c582
|
@ -1764,7 +1764,7 @@ for use with HTML5 video.")
|
||||||
(define-public avidemux
|
(define-public avidemux
|
||||||
(package
|
(package
|
||||||
(name "avidemux")
|
(name "avidemux")
|
||||||
(version "2.6.12")
|
(version "2.7.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -1772,7 +1772,7 @@ for use with HTML5 video.")
|
||||||
name "_" version ".tar.gz"))
|
name "_" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nz52yih8sff53inndkh2dba759xjzsh4b8xjww419lcpk0qp6kn"))
|
"15g9h791qbnmycabbbl7s2b3n3xpvygm88qrfk35g2cw6957ik9w"))
|
||||||
(patches (search-patches "avidemux-install-to-lib.patch"))))
|
(patches (search-patches "avidemux-install-to-lib.patch"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -1810,19 +1810,19 @@ for use with HTML5 video.")
|
||||||
(add-before 'patch-source-shebangs 'unpack-ffmpeg
|
(add-before 'patch-source-shebangs 'unpack-ffmpeg
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "avidemux_core/ffmpeg_package"
|
(with-directory-excursion "avidemux_core/ffmpeg_package"
|
||||||
(invoke "tar" "xf" "ffmpeg-2.7.6.tar.bz2")
|
(invoke "tar" "xf" "ffmpeg-3.3.7.tar.bz2")
|
||||||
(delete-file "ffmpeg-2.7.6.tar.bz2"))
|
(delete-file "ffmpeg-3.3.7.tar.bz2"))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'patch-source-shebangs 'repack-ffmpeg
|
(add-after 'patch-source-shebangs 'repack-ffmpeg
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "avidemux_core/ffmpeg_package"
|
(with-directory-excursion "avidemux_core/ffmpeg_package"
|
||||||
(substitute* "ffmpeg-2.7.6/configure"
|
(substitute* "ffmpeg-3.3.7/configure"
|
||||||
(("#! /bin/sh") (string-append "#!" (which "sh"))))
|
(("#! /bin/sh") (string-append "#!" (which "sh"))))
|
||||||
(invoke "tar" "cjf" "ffmpeg-2.7.6.tar.bz2" "ffmpeg-2.7.6"
|
(invoke "tar" "cjf" "ffmpeg-3.3.7.tar.bz2" "ffmpeg-3.3.7"
|
||||||
;; avoid non-determinism in the archive
|
;; avoid non-determinism in the archive
|
||||||
"--sort=name" "--mtime=@0"
|
"--sort=name" "--mtime=@0"
|
||||||
"--owner=root:0" "--group=root:0")
|
"--owner=root:0" "--group=root:0")
|
||||||
(delete-file-recursively "ffmpeg-2.7.6"))
|
(delete-file-recursively "ffmpeg-3.3.7"))
|
||||||
#t))
|
#t))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in New Issue