[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: Add libvisio.
From: |
Andreas Enge |
Subject: |
08/08: gnu: Add libvisio. |
Date: |
Wed, 06 May 2015 20:26:05 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 56203284b626cfefac355ecc10ec23191d80eabd
Author: Andreas Enge <address@hidden>
Date: Wed May 6 22:25:21 2015 +0200
gnu: Add libvisio.
* gnu/packages/libreoffice.scm (libvisio): New variable.
---
gnu/packages/libreoffice.scm | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 98d646c..fb30860 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -387,3 +387,37 @@ Microsoft Publisher documents of all versions.")
Aldus/Adobe PageMaker documents. Currently it only understands documents
created by PageMaker version 6.x and 7.")
(license mpl2.0)))
+
+(define-public libvisio
+ (package
+ (name "libvisio")
+ ;; FIXME: The newer version 0.1.1 fails its tests.
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
+ name "-" version ".tar.xz"))
+ (sha256 (base32
+ "0vvd2wyp4rw6s9xnj1dc9vgdpfvm45gnb5b9hhzif0fdnx4iskqf"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("cppunit" ,cppunit)
+ ("doxygen" ,doxygen)
+ ("gperf" ,gperf)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("boost" ,boost)
+ ("icu4c" ,icu4c)
+ ("librevenge" ,librevenge)
+ ("libxml2" ,libxml2)))
+ ;; FIXME: Not needed any more for newer version 0.1.1.
+ (arguments
+ ;; avoid triggering a build failure due to warnings
+ `(#:configure-flags '("--disable-werror")))
+ (home-page "https://wiki.documentfoundation.org/DLP/Libraries/libvisio")
+ (synopsis "Library for parsing the Microsoft Visio format")
+ (description "Libvisio is a library that parses the file format of
+Microsoft Visio documents of all versions.")
+ (license mpl2.0)))
- branch master updated (e8444b2 -> 5620328), Andreas Enge, 2015/05/06
- 01/08: gnu: Add libabw., Andreas Enge, 2015/05/06
- 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 <=