[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: Add libcdr.
From: |
Andreas Enge |
Subject: |
02/08: gnu: Add libcdr. |
Date: |
Wed, 06 May 2015 20:26:02 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 9fe8a4ba4e6c13aba810bf03015e466518417c45
Author: Andreas Enge <address@hidden>
Date: Wed May 6 21:34:49 2015 +0200
gnu: Add libcdr.
* gnu/packages/libreoffice.scm (libcdr): New variable.
---
gnu/packages/libreoffice.scm | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 1c5b195..71bd94e 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -26,6 +26,7 @@
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
#:use-module (gnu packages doxygen)
+ #:use-module (gnu packages ghostscript)
#:use-module (gnu packages gperf)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages perl)
@@ -229,3 +230,33 @@ working with graphics in the WPG (WordPerfect Graphics)
format.")
(description "Libabw is a library that parses the file format of
AbiWord documents.")
(license mpl2.0)))
+
+(define-public libcdr
+ (package
+ (name "libcdr")
+ (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
+ "07yzb1yr5kzv0binzj5swz3zzay2gw3xb0fbkc2zwdssgrkf19nh"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("doxygen" ,doxygen)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("boost" ,boost)
+ ("icu4c" ,icu4c)
+ ("lcms" ,lcms)
+ ("librevenge" ,librevenge)
+ ("zlib" ,zlib)))
+ (arguments
+ ;; avoid triggering a build failure due to warnings
+ `(#:configure-flags '("--disable-werror")))
+ (home-page "https://wiki.documentfoundation.org/DLP/Libraries/libcdr")
+ (synopsis "Library for parsing the CorelDRAW format")
+ (description "Libcdr is a library that parses the file format of
+CorelDRAW 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 <=
- 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