guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/08: gnu: Add libpagemaker.


From: Andreas Enge
Subject: 07/08: gnu: Add libpagemaker.
Date: Wed, 06 May 2015 20:26:04 +0000

andreas pushed a commit to branch master
in repository guix.

commit f5d4a138a7937f6a9ff4dd1cca693935322977ba
Author: Andreas Enge <address@hidden>
Date:   Wed May 6 22:12:43 2015 +0200

    gnu: Add libpagemaker.
    
    * gnu/packages/libreoffice.scm (libpagemaker): New variable.
---
 gnu/packages/libreoffice.scm |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 9027a83..98d646c 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -358,3 +358,32 @@ Aldus/Macromedia/Adobe FreeHand documents.")
     (description "Libmspub is a library that parses the file format of
 Microsoft Publisher documents of all versions.")
     (license mpl2.0)))
+
+(define-public libpagemaker
+  (package
+    (name "libpagemaker")
+    (version "0.0.2")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "http://dev-www.libreoffice.org/src/"; name "/"
+                          name "-" version ".tar.xz"))
+      (sha256 (base32
+               "05zgj5ngg9z4b7dnrfs59nm0macm99lzyxv4mg53jcvp0mkgigfd"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("doxygen" ,doxygen)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("boost" ,boost)
+       ("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/libpagemaker";)
+    (synopsis "Library for parsing the PageMaker format")
+    (description "Libpagemaker is a library that parses the file format of
+Aldus/Adobe PageMaker documents.  Currently it only understands documents
+created by PageMaker version 6.x and 7.")
+    (license mpl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]