From 6666fd839e4b533b6508b7bb3c11eac5c648d0b9 Mon Sep 17 00:00:00 2001 From: hashirama Date: Fri, 26 Jul 2024 14:03:17 -0400 Subject: [PATCH] vvdec must be a shared lib --- ajatt/packages/video.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ajatt/packages/video.scm b/ajatt/packages/video.scm index 5075499..4efb531 100644 --- a/ajatt/packages/video.scm +++ b/ajatt/packages/video.scm @@ -27,8 +27,11 @@ (base32 "0qr4sp3gq3pxpl7nr2dxd628jmdwv09f76pgsyc5rydz05ahymym")))) (build-system cmake-build-system) (arguments - (list #:cmake cmake - #:tests? #f )) + (list + #:configure-flags + #~(list "-DBUILD_SHARED_LIBS=1") + #:cmake cmake + #:tests? #f )) (synopsis "VVdeC, the Fraunhofer Versatile Video Decoder.") (description "VVdeC, the Fraunhofer Versatile Video Decoder, is a fast software H.266/VVC decoder implementation supporting all features of the VVC Main10 profile.")