[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add libabw.
From: |
Andreas Enge |
Subject: |
01/08: gnu: Add libabw. |
Date: |
Wed, 06 May 2015 20:26:01 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 4cd369ed6b0c095d9bb9a5550e84eba22630677d
Author: Andreas Enge <address@hidden>
Date: Wed May 6 21:18:32 2015 +0200
gnu: Add libabw.
* gnu/packages/libreoffice.scm (libabw): New variable.
---
gnu/packages/libreoffice.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 481ab21..1c5b195 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -199,3 +199,33 @@ ZVR (simple compressed text format).")
(description "The libwpg project provides a library and tools for
working with graphics in the WPG (WordPerfect Graphics) format.")
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
+
+(define-public libabw
+ (package
+ (name "libabw")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
+ name "-" version ".tar.xz"))
+ (sha256 (base32
+ "0zi1zj4fpxgpglbbb5n1kg3dmhqq5rpf46lli89r5daavp19iing"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("doxygen" ,doxygen)
+ ("gperf" ,gperf)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("boost" ,boost)
+ ("librevenge" ,librevenge)
+ ("libxml2" ,libxml2)))
+ (arguments
+ ;; avoid triggering configure errors by simple inclusion of boost headers
+ `(#:configure-flags '("--disable-werror")))
+ (home-page "https://wiki.documentfoundation.org/DLP/Libraries/libabw")
+ (synopsis "Library for parsing the AbiWord format")
+ (description "Libabw is a library that parses the file format of
+AbiWord documents.")
+ (license mpl2.0)))
- branch master updated (e8444b2 -> 5620328), Andreas Enge, 2015/05/06
- 01/08: gnu: Add libabw.,
Andreas Enge <=
- 04/08: gnu: Add libexttextcat., Andreas Enge, 2015/05/06
- 03/08: gnu: Add libetonyek., Andreas Enge, 2015/05/06
- 05/08: gnu: Add libfreehand., Andreas Enge, 2015/05/06
- 02/08: gnu: Add libcdr., Andreas Enge, 2015/05/06
- 06/08: gnu: Add libmspub., Andreas Enge, 2015/05/06
- 07/08: gnu: Add libpagemaker., Andreas Enge, 2015/05/06
- 08/08: gnu: Add libvisio., Andreas Enge, 2015/05/06