[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add libepubgen.
From: |
Ricardo Wurmus |
Subject: |
01/06: gnu: Add libepubgen. |
Date: |
Thu, 7 Jun 2018 05:10:02 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 38be0f4245d65e18e7d31f8207c99f8d0c674b5d
Author: Ricardo Wurmus <address@hidden>
Date: Thu Jun 7 08:30:41 2018 +0200
gnu: Add libepubgen.
* gnu/packages/libreoffice.scm (libepubgen): New variable.
---
gnu/packages/libreoffice.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 1faab30..a34f4ee 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2017, 2018 Ludovic Courtès <address@hidden>
;;; Copyright © 2017, 2018 Marius Bakke <address@hidden>
;;; Copyright © 2017 Rutger Helling <address@hidden>
+;;; Copyright © 2018 Ricardo Wurmus <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -224,6 +225,34 @@ cellphones), TCR (simple compressed text format), TealDoc,
zTXT,
ZVR (simple compressed text format).")
(license mpl2.0)))
+(define-public libepubgen
+ (package
+ (name "libepubgen")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/libepubgen/libepubgen-"
+ version "/libepubgen-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1b8mc9zzrqypj1v9zdy3ybc48pw0rfr06cyi7n6grvybjjwq9q03"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("cppunit" ,cppunit)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("libxml2" ,libxml2)
+ ("boost" ,boost)))
+ (propagated-inputs ; in Requires field of .pkg
+ `(("librevenge" ,librevenge)))
+ (home-page "https://sourceforge.net/projects/libepubgen/")
+ (synopsis "EPUB generator library for librevenge")
+ (description "libepubgen is an EPUB generator for librevenge. It supports
+librevenge's text document interface and--currently in a very limited
+way--presentation and vector drawing interfaces.")
+ (license mpl2.0)))
+
(define-public libwpg
(package
(name "libwpg")
- branch master updated (d6dd64a -> 6d095c4), Ricardo Wurmus, 2018/06/07
- 05/06: gnu: libreoffice: Update to 6.0.5.1., Ricardo Wurmus, 2018/06/07
- 06/06: gnu: star: Update to 2.6.0c., Ricardo Wurmus, 2018/06/07
- 01/06: gnu: Add libepubgen.,
Ricardo Wurmus <=
- 04/06: gnu: orcus: Update to 0.13.4., Ricardo Wurmus, 2018/06/07
- 03/06: gnu: ixion: Update to 0.13.0., Ricardo Wurmus, 2018/06/07
- 02/06: gnu: Add libqxp., Ricardo Wurmus, 2018/06/07