gnu: libopenshot: Update to 0.2.7.
* gnu/packages/video.scm (libopenshot): Update to 0.2.7. [origin]: Adjust snippet to upstream changes. [inputs]: Add alsa-lib and zlib. [propagated-inputs]: Replace ffmpeg-4.3 with ffmpeg.master
parent
c4ca2e9558
commit
7eaacf0ece
|
@ -4659,7 +4659,7 @@ create smoother and stable videos.")
|
||||||
(define-public libopenshot
|
(define-public libopenshot
|
||||||
(package
|
(package
|
||||||
(name "libopenshot")
|
(name "libopenshot")
|
||||||
(version "0.2.5")
|
(version "0.2.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -4668,11 +4668,11 @@ create smoother and stable videos.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mxjkgjmjzgf628y3rscc6rqf55hxgjpmvwxlncfk1216i5xskwp"))
|
"0i9bsn8gklm1mvj60l3d3xrxdgy8svpxjfqcwsr308j5zjn30pv8"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
;; Allow overriding of the python installation dir
|
;; Allow overriding of the python installation dir
|
||||||
(substitute* "src/bindings/python/CMakeLists.txt"
|
(substitute* "bindings/python/CMakeLists.txt"
|
||||||
(("(SET\\(PYTHON_MODULE_PATH.*)\\)" _ set)
|
(("(SET\\(PYTHON_MODULE_PATH.*)\\)" _ set)
|
||||||
(string-append set " CACHE PATH "
|
(string-append set " CACHE PATH "
|
||||||
"\"Python bindings directory\")")))
|
"\"Python bindings directory\")")))
|
||||||
|
@ -4684,11 +4684,12 @@ create smoother and stable videos.")
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("swig" ,swig)
|
("swig" ,swig)
|
||||||
("unittest++" ,unittest-cpp)))
|
("unittest++" ,unittest-cpp)))
|
||||||
|
(inputs
|
||||||
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
("zlib" ,zlib)))
|
||||||
(propagated-inputs ;all referenced in installed headers
|
(propagated-inputs ;all referenced in installed headers
|
||||||
`(("cppzmq" ,cppzmq)
|
`(("cppzmq" ,cppzmq)
|
||||||
;; libopenshot doesn't yet build with ffmpeg 4.4 (see:
|
("ffmpeg" ,ffmpeg)
|
||||||
;; https://github.com/OpenShot/libopenshot/issues/676).
|
|
||||||
("ffmpeg" ,ffmpeg-4.3)
|
|
||||||
("imagemagick" ,imagemagick)
|
("imagemagick" ,imagemagick)
|
||||||
("jsoncpp" ,jsoncpp)
|
("jsoncpp" ,jsoncpp)
|
||||||
("libopenshot-audio" ,libopenshot-audio)
|
("libopenshot-audio" ,libopenshot-audio)
|
||||||
|
|
Reference in New Issue