gnu: poppler: Update to 21.06.1.

* gnu/packages/pdf.scm (poppler): Update to 21.06.1.
[arguments]: Add "-DENABLE_BOOST=OFF" to #:configure-flags.
This commit is contained in:
Marius Bakke 2021-06-13 01:13:53 +02:00
parent 31aa0559a5
commit be78dea4d3
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -222,14 +222,14 @@ (define-public flyer-composer-cli
(define-public poppler (define-public poppler
(package (package
(name "poppler") (name "poppler")
(version "21.05.0") (version "21.06.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://poppler.freedesktop.org/poppler-" (uri (string-append "https://poppler.freedesktop.org/poppler-"
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"135x1p4jc7cym3an1g45q7blk14fyg8m7z20phai5b8gd1xm7zfs")))) "1d2xb57z0rpcs23mz7f53x5sz3hjql8qgvqn74d0hh6y09d9xc46"))))
(build-system cmake-build-system) (build-system cmake-build-system)
;; FIXME: ;; FIXME:
;; use libcurl: no ;; use libcurl: no
@ -261,6 +261,7 @@ (define-public poppler
(lib (string-append out "/lib"))) (lib (string-append out "/lib")))
(list "-DENABLE_UNSTABLE_API_ABI_HEADERS=ON" ;to install header files (list "-DENABLE_UNSTABLE_API_ABI_HEADERS=ON" ;to install header files
"-DENABLE_ZLIB=ON" "-DENABLE_ZLIB=ON"
"-DENABLE_BOOST=OFF" ;disable Boost to save size
(string-append "-DCMAKE_INSTALL_LIBDIR=" lib) (string-append "-DCMAKE_INSTALL_LIBDIR=" lib)
(string-append "-DCMAKE_INSTALL_RPATH=" lib))))) (string-append "-DCMAKE_INSTALL_RPATH=" lib)))))
(synopsis "PDF rendering library") (synopsis "PDF rendering library")