3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: mupdf: Update to 1.18.0.

* gnu/packages/pdf.scm (mupdf): Update to 1.18.0.
[inputs]: Add gumbo-parser.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-24 01:30:24 +01:00
parent 089f9be4f2
commit c5427f016a
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -88,6 +88,7 @@
#:use-module (gnu packages sqlite)
#:use-module (gnu packages tex)
#:use-module (gnu packages tls)
#:use-module (gnu packages web)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg)
@ -683,7 +684,7 @@ extracting content or merging files.")
(define-public mupdf
(package
(name "mupdf")
(version "1.16.1")
(version "1.18.0")
(source
(origin
(method url-fetch)
@ -710,6 +711,7 @@ extracting content or merging files.")
`(("curl" ,curl)
("freeglut" ,freeglut)
("freetype" ,freetype)
("gumbo-parser" ,gumbo-parser)
("harfbuzz" ,harfbuzz)
("jbig2dec" ,jbig2dec)
("libjpeg" ,libjpeg-turbo)
@ -722,14 +724,14 @@ extracting content or merging files.")
(native-inputs
`(("pkg-config" ,pkg-config)))
(arguments
'(#:tests? #f ; no check target
'(#:tests? #f ; no check target
#:make-flags (list "CC=gcc"
"XCFLAGS=-fpic"
"USE_SYSTEM_LIBS=yes"
"USE_SYSTEM_MUJS=yes"
(string-append "prefix=" (assoc-ref %outputs "out")))
#:phases (modify-phases %standard-phases
(delete 'configure))))
(delete 'configure)))) ; no configure script
(home-page "https://mupdf.com")
(synopsis "Lightweight PDF viewer and toolkit")
(description