936 lines
34 KiB
Scheme
936 lines
34 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
|
;;; Copyright © 2017 Alex Griffin <a@ajgrf.com>
|
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages libreoffice)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix download)
|
|
#:use-module ((guix licenses)
|
|
#:select (gpl2+ lgpl2.1+ lgpl3+ mpl1.1 mpl2.0
|
|
non-copyleft x11-style))
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages autotools)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages bison)
|
|
#:use-module (gnu packages boost)
|
|
#:use-module (gnu packages check)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages cups)
|
|
#:use-module (gnu packages curl)
|
|
#:use-module (gnu packages cyrus-sasl)
|
|
#:use-module (gnu packages databases)
|
|
#:use-module (gnu packages documentation)
|
|
#:use-module (gnu packages flex)
|
|
#:use-module (gnu packages fontutils)
|
|
#:use-module (gnu packages ghostscript)
|
|
#:use-module (gnu packages gl)
|
|
#:use-module (gnu packages glib)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages gperf)
|
|
#:use-module (gnu packages gnuzilla)
|
|
#:use-module (gnu packages gstreamer)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages icu4c)
|
|
#:use-module (gnu packages image)
|
|
#:use-module (gnu packages java)
|
|
#:use-module (gnu packages linux)
|
|
#:use-module (gnu packages maths)
|
|
#:use-module (gnu packages openldap)
|
|
#:use-module (gnu packages pdf)
|
|
#:use-module (gnu packages perl)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages rdf)
|
|
#:use-module (gnu packages scanner)
|
|
#:use-module (gnu packages tls)
|
|
#:use-module (gnu packages version-control)
|
|
#:use-module (gnu packages xml)
|
|
#:use-module (gnu packages xorg)
|
|
#:use-module (gnu packages zip))
|
|
|
|
(define-public ixion
|
|
(package
|
|
(name "ixion")
|
|
(version "0.12.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://kohei.us/files/ixion/src/libixion-"
|
|
version ".tar.xz"))
|
|
(sha256 (base32
|
|
"1bnsqbxpbijwbg42rrqq6mz06wvcxjpl0gjdzwyilkmv6s400i4b"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("mdds" ,mdds)
|
|
("python" ,python)))
|
|
(home-page "https://gitlab.com/ixion/ixion")
|
|
(synopsis "General purpose formula parser and interpreter")
|
|
(description "Ixion is a library for calculating the results of formula
|
|
expressions stored in multiple named targets, or \"cells\". The cells can
|
|
be referenced from each other, and the library takes care of resolving
|
|
their dependencies automatically upon calculation.")
|
|
(license mpl2.0)))
|
|
|
|
(define-public orcus
|
|
(package
|
|
(name "orcus")
|
|
(version "0.12.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://kohei.us/files/" name "/src/lib"
|
|
name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"171bmqa9hkk4xygz20qda5900rs4kq9fgl424ldkxlj4d733dffi"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("ixion" ,ixion)
|
|
("mdds" ,mdds)
|
|
("python" ,python)
|
|
("zlib" ,zlib)))
|
|
(home-page "https://gitlab.com/orcus/orcus")
|
|
(synopsis "File import filter library for spreadsheet documents")
|
|
(description "Orcus is a library that provides a collection of standalone
|
|
file processing filters. It is currently focused on providing filters for
|
|
spreadsheet documents. The library includes import filters for
|
|
Microsoft Excel 2007 XML, Microsoft Excel 2003 XML, Open Document Spreadsheet,
|
|
Plain Text, Gnumeric XML, Generic XML. It also includes low-level parsers for
|
|
CSV, CSS and XML.")
|
|
(license mpl2.0)))
|
|
|
|
(define-public librevenge
|
|
(package
|
|
(name "librevenge")
|
|
(version "0.0.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/libwpd/" name "/" name "-"
|
|
version "/" name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"03ygxyb0vfjv8raif5q62sl33b54wkr5rzgadb8slijm6k281wpn"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("cppunit" ,cppunit)
|
|
("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("zlib" ,zlib)))
|
|
(propagated-inputs ; Referenced by .la files
|
|
`(("boost" ,boost)))
|
|
(arguments
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
`(#:configure-flags '("--disable-werror"
|
|
;; Avoid undefined library references
|
|
"LDFLAGS=-lboost_system")))
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/librevenge/")
|
|
(synopsis "Document importer for office suites")
|
|
(description "Librevenge is a base library for writing document import
|
|
filters. It has interfaces for text documents, vector graphics,
|
|
spreadsheets and presentations.")
|
|
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
|
|
|
|
(define-public libwpd
|
|
(package
|
|
(name "libwpd")
|
|
(version "0.10.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
name "-" version "/" name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs
|
|
`(("librevenge" ,librevenge))) ; in Requires field of .pkg
|
|
(inputs
|
|
`(("zlib" ,zlib)))
|
|
(home-page "http://libwpd.sourceforge.net/")
|
|
(synopsis "Library for importing WordPerfect documents")
|
|
(description "Libwpd is a C++ library designed to help process
|
|
WordPerfect documents. It is most commonly used to import such documents
|
|
into other word processors.")
|
|
(license (list mpl2.0 lgpl2.1+)))) ;dual licensed
|
|
|
|
(define-public libe-book
|
|
(package
|
|
(name "libe-book")
|
|
(version "0.1.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/libebook/libe-book-"
|
|
version "/libe-book-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"1v48pd32r2pfysr3a3igc4ivcf6vvb26jq4pdkcnq75p70alp2bz"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("cppunit" ,cppunit)
|
|
("gperf" ,gperf)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("icu4c" ,icu4c)
|
|
("librevenge" ,librevenge)
|
|
("libxml2" ,libxml2)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
(arguments
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
`(#:configure-flags '("--disable-werror")))
|
|
(home-page "http://libebook.sourceforge.net")
|
|
(synopsis "Library for import of reflowable e-book formats")
|
|
(description "Libe-book is a library and a set of tools for reading and
|
|
converting various reflowable e-book formats. Currently supported are:
|
|
Broad Band eBook, eReader .pdb, FictionBook v. 2 (including zipped files),
|
|
PalmDoc Ebook, Plucker .pdb, QiOO (mobile format, for java-enabled
|
|
cellphones), TCR (simple compressed text format), TealDoc, zTXT,
|
|
ZVR (simple compressed text format).")
|
|
(license mpl2.0)))
|
|
|
|
(define-public libwpg
|
|
(package
|
|
(name "libwpg")
|
|
(version "0.3.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
name "-" version "/" name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"097jx8a638fwwfrzf6v29r1yhc34rq9526py7wf0ck2z4fcr2w3g"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs
|
|
`(("libwpd" ,libwpd))) ; in Requires field of .pkg
|
|
(inputs
|
|
`(("perl" ,perl)
|
|
("zlib" ,zlib)))
|
|
(home-page "http://libwpg.sourceforge.net/")
|
|
(synopsis "Library and tools for the WordPerfect Graphics 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 libcmis
|
|
(package
|
|
(name "libcmis")
|
|
(version "0.5.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/tdf/libcmis/releases/download/v"
|
|
version "/libcmis-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"03kvl8ywsv5qrxblf0m6955mmvl5q2zpb6vj51vs7ayvxhidzjva"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("cppunit" ,cppunit)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
`(("curl" ,curl)
|
|
("libxml2" ,libxml2)))
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("cyrus-sasl" ,cyrus-sasl)
|
|
("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 "https://github.com/tdf/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")
|
|
(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)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("librevenge" ,librevenge)
|
|
("libxml2" ,libxml2)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
(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)))
|
|
|
|
(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)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("icu4c" ,icu4c)
|
|
("lcms" ,lcms)
|
|
("librevenge" ,librevenge)
|
|
("zlib" ,zlib)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
(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)))
|
|
|
|
(define-public libetonyek
|
|
(package
|
|
(name "libetonyek")
|
|
(version "0.1.6")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"0y60vi1plyq69fqbcjnc0v8mvcjqjsl1ry6rmb3bq3q7j8a2fm6z"))
|
|
(patches (search-patches "libetonyek-build-with-mdds-1.2.patch"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:configure-flags '("--with-mdds=1.2")
|
|
#:phases (modify-phases %standard-phases
|
|
(add-before 'configure 'autoreconf
|
|
(lambda _ (system* "autoreconf"))))))
|
|
(native-inputs
|
|
`(("cppunit" ,cppunit)
|
|
("doxygen" ,doxygen)
|
|
("glm" ,glm)
|
|
("gperf" ,gperf)
|
|
("liblangtag" ,liblangtag)
|
|
("mdds" ,mdds)
|
|
("pkg-config" ,pkg-config)
|
|
("autoconf" ,autoconf) ; due to patch
|
|
("automake" ,automake)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("librevenge" ,librevenge)
|
|
("libxml2" ,libxml2)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libetonyek")
|
|
(synopsis "Library for parsing the Apple Keynote format")
|
|
(description "Libetonyek is a library that parses the file format of
|
|
Apple Keynote documents. It currently supports Keynote versions 2 to 5.")
|
|
(license mpl2.0)))
|
|
|
|
(define-public liblangtag
|
|
(package
|
|
(name "liblangtag")
|
|
(version "0.5.8")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://bitbucket.org/tagoh/liblangtag/downloads/"
|
|
name "-" version ".tar.bz2"))
|
|
(sha256
|
|
(base32
|
|
"1akf0d7yp29pv3j2pw2riii4n5kyjr9szc0y77khnx9zzr5zdqh8"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("libtool" ,libtool)
|
|
("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("libxml2" ,libxml2)))
|
|
(home-page "http://tagoh.bitbucket.org/liblangtag/")
|
|
(synopsis "Library to access tags for identifying languages")
|
|
(description "Liblangtag implements an interface to work with tags
|
|
for identifying languages as described in RFC 5646. It supports the
|
|
extensions described in RFC6067 and RFC6497, and Extension T for
|
|
language/locale identifiers as described in the Unicode CLDR
|
|
standard 21.0.2.")
|
|
(license (list lgpl3+ mpl2.0)))) ; dual license
|
|
|
|
(define-public libexttextcat
|
|
(package
|
|
(name "libexttextcat")
|
|
(version "3.4.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"14v2hkygnmf1zgahfm1fha47cr67iikrz2ymiqi28d2jydn0hk7j"))))
|
|
(build-system gnu-build-system)
|
|
(home-page "http://www.freedesktop.org/wiki/Software/libexttextcat/")
|
|
(synopsis "Text Categorization library")
|
|
(description "Libexttextcat is an N-Gram-Based Text Categorization
|
|
library primarily intended for language guessing.")
|
|
(license (non-copyleft "file://LICENSE"
|
|
"See LICENSE in the distribution."))))
|
|
|
|
(define-public libfreehand
|
|
(package
|
|
(name "libfreehand")
|
|
(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
|
|
"01j7mxi4lmf72w1mv2r098p8l0csdd94w2gq0ncp93djn34al6ai"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("gperf" ,gperf)
|
|
("perl" ,perl)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("librevenge" ,librevenge)
|
|
("zlib" ,zlib)))
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libfreehand")
|
|
(synopsis "Library for parsing the FreeHand format")
|
|
(description "Libfreehand is a library that parses the file format of
|
|
Aldus/Macromedia/Adobe FreeHand documents.")
|
|
(license mpl2.0)))
|
|
|
|
(define-public libmspub
|
|
(package
|
|
(name "libmspub")
|
|
(version "0.1.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"03sn6lxpr49sdq6j8q7fw7yjybyfahhs03z80388mh105pwapfmh"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("icu4c" ,icu4c)
|
|
("librevenge" ,librevenge)
|
|
("zlib" ,zlib)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libmspub")
|
|
(synopsis "Library for parsing the Microsoft Publisher format")
|
|
(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)))
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
`(("librevenge" ,librevenge)))
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("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)))
|
|
|
|
(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)))
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
`(("icu4c" ,icu4c)
|
|
("librevenge" ,librevenge)
|
|
("libxml2" ,libxml2)))
|
|
(inputs
|
|
`(("boost" ,boost)))
|
|
;; 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)))
|
|
|
|
(define-public libodfgen
|
|
(package
|
|
(name "libodfgen")
|
|
(version "0.1.3")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/"
|
|
name "-" version ".tar.bz2"))
|
|
(sha256 (base32
|
|
"074qsav86ixwi9zm1f77g9vxdf1ihm6n930vxjg8q3lwzd8g7lb6"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
`(("librevenge" ,librevenge)))
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("zlib" ,zlib)))
|
|
(arguments
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
`(#:configure-flags '("--disable-werror")))
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/libodfgen/")
|
|
(synopsis "ODF (Open Document Format) library")
|
|
(description "Libodfgen is a library for generating documents in the
|
|
Open Document Format (ODF). It provides generator implementations for all
|
|
document interfaces supported by librevenge:
|
|
text documents, vector drawings, presentations and spreadsheets.")
|
|
(license (list mpl2.0 lgpl2.1+)))) ; dual license
|
|
|
|
(define-public libmwaw
|
|
(package
|
|
(name "libmwaw")
|
|
(version "0.3.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/" name "-"
|
|
version "/" name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"1vx9h419fcfcs0yj071hsg9d2qvkacgca6052m8hv3h743cdmzil"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
`(("librevenge" ,librevenge)))
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("zlib" ,zlib)))
|
|
(arguments
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
`(#:configure-flags '("--disable-werror")))
|
|
(home-page "https://sourceforge.net/p/libmwaw/wiki/Home/")
|
|
(synopsis "Import library for some old Macintosh text documents")
|
|
(description "Libmwaw contains some import filters for old Macintosh
|
|
text documents (MacWrite, ClarisWorks, ... ) and for some graphics and
|
|
spreadsheet documents.")
|
|
(license (list mpl2.0 lgpl2.1+)))) ; dual license
|
|
|
|
(define-public libstaroffice
|
|
(package
|
|
(name "libstaroffice")
|
|
(version "0.0.3")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/fosnola/libstaroffice/releases/download/"
|
|
version "/libstaroffice-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"1ii2wi3wr5npyz9gby1bjk8r4wyflpfpc6gx7mmqkhsc9c8frpmy"))))
|
|
(build-system gnu-build-system)
|
|
(inputs
|
|
`(("librevenge" ,librevenge)
|
|
("zlib" ,zlib)))
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(home-page "https://github.com/fosnola/libstaroffice")
|
|
(synopsis "Provides LibreOffice support for old StarOffice documents")
|
|
(description "@code{libstaroffice} is an import filter for the document formats
|
|
from the old StarOffice (.sdc, .sdw, ...).")
|
|
(license (list mpl2.0 lgpl2.1+)))) ; dual license
|
|
|
|
(define-public libwps
|
|
(package
|
|
(name "libwps")
|
|
(version "0.4.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
name "-" version "/" name "-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"0nlrdk7di015l0sk0ivjdqs86zdcvf73p9z9s9ry5glyhrknzxjk"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
`(("librevenge" ,librevenge)))
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("zlib" ,zlib)))
|
|
(arguments
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
`(#:configure-flags '("--disable-werror")))
|
|
(home-page "http://libwps.sourceforge.net/")
|
|
(synopsis "Import library for Microsoft Works text documents")
|
|
(description "Libwps is a library for importing files in the Microsoft
|
|
Works word processor file format.")
|
|
(license (list mpl2.0 lgpl2.1+)))) ; dual license
|
|
|
|
(define-public libzmf
|
|
(package
|
|
(name "libzmf")
|
|
(version "0.0.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/libzmf/libzmf-"
|
|
version ".tar.xz"))
|
|
(sha256 (base32
|
|
"0yp5l1b90xim506zmr3ljkn3qkvbc7qk3dnwq1snxdpr57m37xga"))))
|
|
(build-system gnu-build-system)
|
|
(inputs
|
|
`(("boost" ,boost)
|
|
("icu4c" ,icu4c)
|
|
("libpng" ,libpng)
|
|
("librevenge" ,librevenge)
|
|
("zlib" ,zlib)))
|
|
(native-inputs
|
|
`(("cppunit" ,cppunit)
|
|
("doxygen" ,doxygen)
|
|
("pkg-config" ,pkg-config)))
|
|
(home-page "https://wiki.documentfoundation.org/DLP/Libraries/libzmf")
|
|
(synopsis "Parses file format of Zoner Callisto/Draw documents")
|
|
(description "Libzmf is a library that parses the file format of Zoner
|
|
Callisto/Draw documents. Currently it only understands documents created by
|
|
Zoner Draw version 4 and 5.")
|
|
(license mpl2.0)))
|
|
|
|
(define-public hunspell
|
|
(package
|
|
(name "hunspell")
|
|
(version "1.5.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/hunspell/hunspell/archive/v"
|
|
version ".tar.gz"))
|
|
(sha256 (base32
|
|
"0ngwk18dwd8p5a5f20h2jlgrz9wbc1k189mmmprb2zmqwfi02b45"))
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
(build-system gnu-build-system)
|
|
(inputs
|
|
`(("perl" ,perl)))
|
|
(home-page "http://hunspell.sourceforge.net/")
|
|
(synopsis "Spell checker")
|
|
(description "Hunspell is a spell checker and morphological analyzer
|
|
library and program designed for languages with rich morphology and complex
|
|
word compounding or character encoding.")
|
|
;; Triple license, including "mpl1.1 or later".
|
|
(license (list mpl1.1 gpl2+ lgpl2.1+))))
|
|
|
|
(define-public hyphen
|
|
(package
|
|
(name "hyphen")
|
|
(version "2.8.8")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/hunspell/Hyphen/"
|
|
(version-major+minor version) "/"
|
|
name "-" version ".tar.gz"))
|
|
(sha256 (base32
|
|
"01ap9pr6zzzbp4ky0vy7i1983fwyqy27pl0ld55s30fdxka3ciih"))))
|
|
(build-system gnu-build-system)
|
|
(inputs
|
|
`(("perl" ,perl)))
|
|
(home-page "http://hunspell.sourceforge.net/")
|
|
(synopsis "Hyphenation library")
|
|
(description "Hyphen is a hyphenation library using TeX hyphenation
|
|
patterns, which are pre-processed by a perl script.")
|
|
;; triple license, including "mpl1.1 or later"
|
|
(license (list mpl1.1 mpl2.0 gpl2+ lgpl2.1+))))
|
|
|
|
(define-public mythes
|
|
(package
|
|
(name "mythes")
|
|
(version "1.2.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://sourceforge/hunspell/MyThes/" version "/"
|
|
name "-" version ".tar.gz"))
|
|
(sha256 (base32
|
|
"0prh19wy1c74kmzkkavm9qslk99gz8h8wmjvwzjc6lf8v2az708y"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("hunspell" ,hunspell)
|
|
("perl" ,perl)))
|
|
(home-page "http://hunspell.sourceforge.net/")
|
|
(synopsis "Thesaurus")
|
|
(description "MyThes is a simple thesaurus that uses a structured text
|
|
data file and an index file with binary search to look up words and phrases
|
|
and to return information on pronunciations, meanings and synonyms.")
|
|
(license (non-copyleft "file://COPYING"
|
|
"See COPYING in the distribution."))))
|
|
|
|
;; LibreOffice requires an xmlsec source tarball; it does not even check
|
|
;; for the presence of an externally compiled library.
|
|
(define xmlsec-src-libreoffice
|
|
(origin
|
|
(method url-fetch)
|
|
(uri
|
|
(string-append
|
|
"http://dev-www.libreoffice.org/src/"
|
|
"86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz"))
|
|
(sha256 (base32
|
|
"17qfw5crkqn4v6xbkjxrjvcccfc00dy053892wrwv54qdk8n7m21"))))
|
|
|
|
(define-public libreoffice
|
|
(package
|
|
(name "libreoffice")
|
|
(version "5.3.1.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri
|
|
(string-append
|
|
"http://download.documentfoundation.org/libreoffice/src/"
|
|
(version-prefix version 3) "/libreoffice-" version ".tar.xz"))
|
|
(sha256 (base32
|
|
"1zsl0z0i8pw532x2lmwd64ms6igibkkjhwf01zmm2kpnr9ycsijp"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(;; autoreconf is run by the LibreOffice build system, since after
|
|
;; unpacking the external xmlsec tarball, it applies a series of
|
|
;; patches to Makefile.am, configure.in, config.guess and config.sub.
|
|
("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("bison" ,bison)
|
|
("cppunit" ,cppunit)
|
|
("flex" ,flex)
|
|
("pkg-config" ,pkg-config)
|
|
("python" ,python-wrapper)
|
|
("which" ,which)))
|
|
(inputs
|
|
`(("bluez" ,bluez)
|
|
("boost" ,boost)
|
|
("clucene" ,clucene)
|
|
("cups" ,cups)
|
|
("dbus-glib" ,dbus-glib)
|
|
("fontconfig" ,fontconfig)
|
|
("gconf" ,gconf)
|
|
("glew" ,glew)
|
|
("glm" ,glm)
|
|
("gperf" ,gperf)
|
|
("graphite2" ,graphite2)
|
|
("gst-plugins-base" ,gst-plugins-base)
|
|
("gtk+" ,gtk+-2)
|
|
("harfbuzz" ,harfbuzz)
|
|
("hunspell" ,hunspell)
|
|
("hyphen" ,hyphen)
|
|
("libabw" ,libabw)
|
|
("libcdr" ,libcdr)
|
|
("libcmis" ,libcmis)
|
|
("libjpeg" ,libjpeg)
|
|
("libe-book" ,libe-book)
|
|
("libetonyek" ,libetonyek)
|
|
("libexttextcat" ,libexttextcat)
|
|
("libfreehand" ,libfreehand)
|
|
("libmspub" ,libmspub)
|
|
("libmwaw" ,libmwaw)
|
|
("libodfgen" ,libodfgen)
|
|
("libpagemaker" ,libpagemaker)
|
|
("libstaroffice" ,libstaroffice)
|
|
("libvisio" ,libvisio)
|
|
("libwpg" ,libwpg)
|
|
("libwps" ,libwps)
|
|
("libxrandr" ,libxrandr)
|
|
("libxrender" ,libxrender)
|
|
("libxslt" ,libxslt)
|
|
("libxt" ,libxt)
|
|
("libzmf" ,libzmf)
|
|
("lpsolve" ,lpsolve)
|
|
("mdds" ,mdds)
|
|
("mythes" ,mythes)
|
|
("neon" ,neon)
|
|
("nspr" ,nspr)
|
|
("nss" ,nss)
|
|
("openldap" ,openldap)
|
|
("openssl" ,openssl)
|
|
("orcus" ,orcus)
|
|
("perl" ,perl)
|
|
("perl-zip" ,perl-zip)
|
|
("poppler" ,poppler)
|
|
("postgresql" ,postgresql)
|
|
("python" ,python)
|
|
("redland" ,redland)
|
|
("sane-backends" ,sane-backends)
|
|
("unixodbc" ,unixodbc)
|
|
("unzip" ,unzip)
|
|
("vigra" ,vigra)
|
|
("xmlsec-src" ,xmlsec-src-libreoffice)
|
|
("zip" ,zip)))
|
|
(arguments
|
|
`(#:tests? #f ; Building the tests already fails.
|
|
#:make-flags '("build-nocheck") ; Do not build unit tests, which fails.
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'configure 'prepare-src
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(let ((xmlsec (assoc-ref inputs "xmlsec-src")))
|
|
(substitute*
|
|
(list "sysui/CustomTarget_share.mk"
|
|
"solenv/gbuild/gbuild.mk"
|
|
"solenv/gbuild/platform/unxgcc.mk")
|
|
(("/bin/sh") (which "bash")))
|
|
(mkdir "external/tarballs")
|
|
(symlink
|
|
xmlsec
|
|
(string-append "external/tarballs/"
|
|
"86b1daaa438f5a7bea9a52d7b9799ac0-"
|
|
"xmlsec1-1.2.23.tar.gz"))
|
|
;; The following is required for building xmlsec from the
|
|
;; unpatched external tarball; since "configure" starts with
|
|
;; "/bin/sh", it needs to be executed by a command invoking
|
|
;; the shell.
|
|
(setenv "SHELL" (which "bash"))
|
|
(setenv "CONFIG_SHELL" (which "bash"))
|
|
(substitute* "external/libxmlsec/ExternalProject_xmlsec.mk"
|
|
(("./configure") "$(CONFIG_SHELL) ./configure" ))
|
|
#t)))
|
|
(add-after 'install 'bin-install
|
|
;; Create 'soffice' and 'libreoffice' symlinks to the executable
|
|
;; script.
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(bin (string-append out "/bin"))
|
|
(soffice (string-append
|
|
out "/lib/libreoffice/program/soffice")))
|
|
(mkdir bin)
|
|
(symlink soffice (string-append bin "/soffice"))
|
|
(symlink soffice (string-append bin "/libreoffice")))
|
|
#t)))
|
|
#:configure-flags
|
|
(list
|
|
"--enable-release-build"
|
|
"--enable-verbose"
|
|
"--without-parallelism" ; otherwise the build fails
|
|
"--disable-fetch-external" ; disable downloads
|
|
"--with-system-libs" ; enable all --with-system-* flags
|
|
(string-append "--with-boost-libdir="
|
|
(assoc-ref %build-inputs "boost") "/lib")
|
|
;; Avoid undefined symbols required by boost::spirit
|
|
"LDFLAGS=-lboost_system"
|
|
;; Avoid a dependency on ucpp.
|
|
"--with-idlc-cpp=cpp"
|
|
;; The fonts require an external tarball (crosextrafonts).
|
|
;; They should not be needed when system fonts are available.
|
|
"--without-fonts"
|
|
;; With java, the build fails since sac.jar is missing.
|
|
"--without-java"
|
|
;; FIXME: Enable once the corresponding inputs are packaged.
|
|
"--without-system-npapi-headers"
|
|
"--disable-coinmp"
|
|
"--disable-firebird-sdbc" ; embedded firebird
|
|
"--disable-gltf"
|
|
"--without-doxygen"
|
|
"--disable-gtk3"
|
|
"--disable-liblangtag")))
|
|
(home-page "https://www.libreoffice.org/")
|
|
(synopsis "Office suite")
|
|
(description "LibreOffice is a comprehensive office suite. It contains
|
|
a number of components: Writer, a word processor; Calc, a spreadsheet
|
|
application; Impress, a presentation engine; Draw, a drawing and
|
|
flowcharting application; Base, a database and database frontend;
|
|
Math for editing mathematics.")
|
|
(license mpl2.0)))
|