[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add libcmis.
From: |
Andreas Enge |
Subject: |
01/01: gnu: Add libcmis. |
Date: |
Thu, 14 May 2015 15:26:37 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 3736a110bd60e2453dc51e405d36fed51d4cb9b2
Author: Andreas Enge <address@hidden>
Date: Thu May 14 17:24:03 2015 +0200
gnu: Add libcmis.
* gnu/packages/libreoffice.scm (libcmis): New variable.
Co-authored-by: John Darrington <address@hidden>
---
gnu/packages/libreoffice.scm | 44 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 44 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 539600a..736da39 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -26,10 +26,13 @@
#:use-module (gnu packages boost)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages curl)
+ #:use-module (gnu packages cyrus-sasl)
#:use-module (gnu packages doxygen)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages gperf)
#:use-module (gnu packages icu4c)
+ #:use-module (gnu packages openssl)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -202,6 +205,47 @@ ZVR (simple compressed text format).")
working with graphics in the WPG (WordPerfect Graphics) format.")
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
+(define-public libcmis
+ (package
+ (name "libcmis")
+ (version "0.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/" name "/" name "-"
+ version ".tar.gz"))
+ (sha256 (base32
+ "1dprvk4fibylv24l7gr49gfqbkfgmxynvgssvdcycgpf7n8h4zm8"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("cppunit" ,cppunit)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("boost" ,boost)
+ ("curl" ,curl)
+ ("cyrus-sasl" ,cyrus-sasl)
+ ("libxml2" ,libxml2)
+ ("openssl" ,openssl)))
+ (arguments
+ `(#:configure-flags
+ (list
+ ;; FIXME: Man pages generation requires docbook-to-man; reenable
+ ;; it once this is available.
+ "--without-man"
+ ;; avoid triggering configure errors by simple inclusion of
+ ;; boost headers
+ "--disable-werror"
+ ;; During configure, the boost headers are found, but linking
+ ;; fails without the following flag.
+ (string-append "--with-boost="
+ (assoc-ref %build-inputs "boost")))))
+ (home-page "http://sourceforge.net/projects/libcmis/")
+ (synopsis "CMIS client library")
+ (description "LibCMIS is a C++ client library for the CMIS interface. It
+allows C++ applications to connect to any ECM behaving as a CMIS server such
+as Alfresco or Nuxeo.")
+ (license (list mpl1.1 gpl2+ lgpl2.1+)))) ; triple license
+
(define-public libabw
(package
(name "libabw")