[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add poppler-data.
From: |
Leo Famulari |
Subject: |
03/06: gnu: Add poppler-data. |
Date: |
Mon, 30 Apr 2018 21:08:54 -0400 (EDT) |
lfam pushed a commit to branch master
in repository guix.
commit 6d161406659fd9166da81162db8b2f42de1cd50b
Author: Leo Famulari <address@hidden>
Date: Fri Apr 27 22:03:03 2018 -0400
gnu: Add poppler-data.
* gnu/packages/pdf.scm (poppler-data): New variable.
---
gnu/packages/pdf.scm | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 7762b06..9e5af5f 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -10,7 +10,7 @@
;;; Copyright © 2016, 2017 Ludovic Courtès <address@hidden>
;;; Copyright © 2016 Julien Lepiller <address@hidden>
;;; Copyright © 2016 Arun Isaac <address@hidden>
-;;; Copyright © 2017 Leo Famulari <address@hidden>
+;;; Copyright © 2017, 2018 Leo Famulari <address@hidden>
;;; Copyright © 2017 Alex Vong <address@hidden>
;;; Copyright © 2017 Rene Saavedra <address@hidden>
;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
@@ -124,6 +124,36 @@
(license license:gpl2+)
(home-page "https://poppler.freedesktop.org/")))
+(define-public poppler-data
+ (package
+ (name "poppler-data")
+ (version "0.4.9")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://poppler.freedesktop.org/poppler-data"
+ "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "04i0wgdkn5lhda8cyxd1ll4a2p41pwqrwd47n9mdpl7cx5ypx70z"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f ; no test suite
+ #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ ;; The package only provides some data files, so there is nothing to
+ ;; build.
+ (delete 'configure)
+ (delete 'build))))
+ (synopsis "Poppler encoding files for rendering of CJK and Cyrillic text")
+ (description "This package provides optional encoding files for Poppler.
+When present, Poppler is able to correctly render CJK and Cyrillic text.")
+ (home-page (package-home-page poppler))
+ ;; See COPYING in the source distribution for more information about
+ ;; the licensing.
+ (license (list license:bsd-3
+ license:gpl2))))
+
(define-public poppler-qt4
(package (inherit poppler)
(name "poppler-qt4")
- branch master updated (cb7c80f -> 9eecf9b), Leo Famulari, 2018/04/30
- 03/06: gnu: Add poppler-data.,
Leo Famulari <=
- 02/06: gnu: Add mypaint-brushes., Leo Famulari, 2018/04/30
- 01/06: gnu: Add libmypaint., Leo Famulari, 2018/04/30
- 05/06: gnu: babl: Update to 0.1.46., Leo Famulari, 2018/04/30
- 04/06: gnu: gegl: Update to 0.4., Leo Famulari, 2018/04/30
- 06/06: gnu: gimp: Update to 2.10.0., Leo Famulari, 2018/04/30