guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1434957031d1ebcf3ad372a2ce83266f212a1b96
Author: Vinicius Monego <[email protected]>
AuthorDate: Sun May 11 11:15:39 2025 -0300
gnu: mlt: Build Python bindings.
* gnu/packages/video.scm (mlt)[arguments]<#:configure-flags>: Pass
"-DSWIG_PYTHON=On".
[native-inputs]: Add python-minimal, swig.
Change-Id: I4cb0c40a13fa26c932d5aeb8745bc8447eb42238
---
gnu/packages/video.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index b117fc85a8..dc3dd52219 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3886,6 +3886,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
(arguments
(list
#:tests? #f ;requires "Kwalify"
+ #:configure-flags #~(list "-DSWIG_PYTHON=On")
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'wrap-executable
@@ -3930,7 +3931,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
sox
vidstab))
(native-inputs
- (list pkg-config))
+ (list pkg-config python-minimal swig))
(home-page "https://www.mltframework.org/")
(synopsis "Author, manage, and run multitrack audio/video compositions")
(description