diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-18 03:58:23 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-18 03:58:23 +0100 |
commit | 256d5b3598fa2162e9712fc98781d2cb4ceda31e (patch) | |
tree | 0e7f7051a59aad879561b5c4ee885e24d3c04bc6 /gnu/packages/video.scm | |
parent | 9f6210cc5c114310a38ad1cc0ff5900409a7e7cc (diff) | |
parent | 1a9f267f51f97b8ca7049aa72763ddd64aad5b62 (diff) |
Merge branch 'master' into wip-webkitwip-webkit
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 270bb9b4fe..ec777d935e 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4387,7 +4387,7 @@ practically any type of media.") (define-public libmediainfo (package (name "libmediainfo") - (version "23.03") + (version "23.11") (source (origin (method url-fetch) (uri (string-append "https://mediaarea.net/download/source/" @@ -4395,7 +4395,7 @@ practically any type of media.") name "_" version ".tar.xz")) (sha256 (base32 - "1660lsilm02324c65sxxi41fn225hg78yxqyxff5dyf6fvyzyypm")))) + "0gc5brnwagdgaknkpyhkbpwc52q19vf5i3sayifhsg4yqzy58zhr")))) ;; TODO add a Big Buck Bunny webm for tests. (native-inputs (list autoconf automake libtool pkg-config)) @@ -4450,7 +4450,7 @@ MPEG-2, MPEG-4, DVD (VOB)... (define-public mediainfo (package (name "mediainfo") - (version "23.03") + (version "23.11") (source (origin (method url-fetch) ;; Warning: This source has proved unreliable 1 time at least. @@ -4461,7 +4461,7 @@ MPEG-2, MPEG-4, DVD (VOB)... name "_" version ".tar.xz")) (sha256 (base32 - "1654pal4x753pcha8h939a70q5z3jzaddgb39cinlrv5fljs8qgh")))) + "1hy9m2l94ymhpcrhlqqjpgl24lz33qm239pcdlic3z5zs6qb2740")))) (native-inputs (list autoconf automake libtool pkg-config)) (inputs @@ -5588,12 +5588,9 @@ result in several formats: (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (invoke "cargo" "cinstall" "--release" - (string-append "--prefix=" out))))) - (add-after 'install 'delete-static-library - (lambda* (#:key outputs #:allow-other-keys) - ;; Delete 93 MiB (!) static library. - (delete-file (string-append (assoc-ref outputs "out") - "/lib/librav1e.a"))))))) + ;; Only build the dynamic library. + "--library-type" "cdylib" + (string-append "--prefix=" out)))))))) (native-inputs (list nasm pkg-config rust-cargo-c)) (inputs |