gnu: mupdf: Update to 1.21.1.

* gnu/packages/pdf.scm (mupdf): Update to 1.21.1.
[arguments]: Remove superfluous make flag.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Timotej Lazar 2023-01-30 08:01:20 +01:00 committed by Nicolas Goaziou
parent 9d7a1e58f9
commit 4b15cb672d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -758,15 +758,14 @@ and based on PDF specification 1.7.")
(define-public mupdf (define-public mupdf
(package (package
(name "mupdf") (name "mupdf")
(version "1.20.3") (version "1.21.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://mupdf.com/downloads/archive/" (uri (string-append "https://mupdf.com/downloads/archive/"
"mupdf-" version "-source.tar.lz")) "mupdf-" version "-source.tar.lz"))
(sha256 (sha256
(base32 (base32 "0876sn5nd8vyw9d3d3bmripm119jy6734rs0ywppqzvccy839936"))
"0s0qclxxdjis04mczgz0fhfpv0j8llk48g82zlfrk0daz0zgcwvg"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
#~(begin #~(begin
@ -814,14 +813,13 @@ and based on PDF specification 1.7.")
"USE_SYSTEM_JPEGXR=no # not available" "USE_SYSTEM_JPEGXR=no # not available"
"USE_SYSTEM_LCMS2=no # lcms2mt is strongly preferred" "USE_SYSTEM_LCMS2=no # lcms2mt is strongly preferred"
"USE_SYSTEM_LIBJPEG=yes" "USE_SYSTEM_LIBJPEG=yes"
"USE_SYSTEM_MUJS=no # not available" "USE_SYSTEM_MUJS=yes"
"USE_SYSTEM_OPENJPEG=yes" "USE_SYSTEM_OPENJPEG=yes"
"USE_SYSTEM_ZLIB=yes" "USE_SYSTEM_ZLIB=yes"
"USE_SYSTEM_GLUT=no" "USE_SYSTEM_GLUT=no"
"USE_SYSTEM_CURL=yes" "USE_SYSTEM_CURL=yes"
"USE_SYSTEM_LEPTONICA=yes" "USE_SYSTEM_LEPTONICA=yes"
"USE_SYSTEM_TESSERACT=yes" "USE_SYSTEM_TESSERACT=yes"
"USE_SYSTEM_MUJS=yes"
"shared=yes" "shared=yes"
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib") (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")
(string-append "prefix=" #$output)) (string-append "prefix=" #$output))