2015-04-27 20:09:15 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
2016-03-07 10:42:02 +00:00
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2019-01-05 20:20:02 +00:00
|
|
|
|
;;; Copyright © 2016, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
2017-01-03 15:58:41 +00:00
|
|
|
|
;;; Copyright © 2017 Alex Griffin <a@ajgrf.com>
|
2017-03-27 18:15:04 +00:00
|
|
|
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
2020-02-17 05:07:12 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-08-13 11:59:46 +00:00
|
|
|
|
;;; Copyright © 2017 Andy Wingo <wingo@igalia.com>
|
gnu: Move nss & co. to nss.scm.
* gnu/packages/gnuzilla.scm (nspr, nss): Move to...
* gnu/packages/nss.scm: ... here. New file.
* gnu/packages/chromium.scm, gnu/packages/disk.scm,
gnu/packages/freedesktop.scm, gnu/packages/gnome.scm,
gnu/packages/gnunet.scm, gnu/packages/java.scm,
gnu/packages/libreoffice.scm, gnu/packages/linux.scm,
gnu/packages/mate.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/password-utils.scm,
gnu/packages/polkit.scm, gnu/packages/qt.scm,
gnu/packages/sssd.scm, gnu/packages/storage.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust
accordingly.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm.
2019-04-04 13:14:57 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2019-01-02 22:11:36 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
2017-11-10 18:38:50 +00:00
|
|
|
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
2019-01-14 15:00:35 +00:00
|
|
|
|
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
2018-09-11 05:58:36 +00:00
|
|
|
|
;;; Copyright © 2018 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
2019-07-16 05:42:07 +00:00
|
|
|
|
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
|
2015-04-27 20:09:15 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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)
|
2018-09-29 03:30:55 +00:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2020-02-21 02:40:44 +00:00
|
|
|
|
#:use-module (guix build-system python)
|
2017-09-16 21:20:09 +00:00
|
|
|
|
#:use-module (guix build-system trivial)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (guix download)
|
2019-01-05 20:20:02 +00:00
|
|
|
|
#:use-module (guix git-download)
|
2020-02-17 20:21:55 +00:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2017-09-16 21:20:09 +00:00
|
|
|
|
#:use-module (ice-9 match)
|
2016-01-05 22:09:27 +00:00
|
|
|
|
#:use-module (gnu packages)
|
2020-01-30 19:54:28 +00:00
|
|
|
|
#:use-module (gnu packages aidc)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages bison)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (gnu packages boost)
|
2015-05-03 11:05:58 +00:00
|
|
|
|
#:use-module (gnu packages check)
|
2015-04-30 19:23:29 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages cups)
|
2015-05-14 15:24:03 +00:00
|
|
|
|
#:use-module (gnu packages curl)
|
|
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages databases)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 00:18:15 +00:00
|
|
|
|
#:use-module (gnu packages documentation)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages flex)
|
|
|
|
|
#:use-module (gnu packages fontutils)
|
2019-07-16 05:42:07 +00:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2015-05-06 19:34:49 +00:00
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages gperf)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages gstreamer)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages icu4c)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages image)
|
|
|
|
|
#:use-module (gnu packages java)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2020-01-30 19:53:22 +00:00
|
|
|
|
#:use-module (gnu packages logging)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages maths)
|
gnu: Move nss & co. to nss.scm.
* gnu/packages/gnuzilla.scm (nspr, nss): Move to...
* gnu/packages/nss.scm: ... here. New file.
* gnu/packages/chromium.scm, gnu/packages/disk.scm,
gnu/packages/freedesktop.scm, gnu/packages/gnome.scm,
gnu/packages/gnunet.scm, gnu/packages/java.scm,
gnu/packages/libreoffice.scm, gnu/packages/linux.scm,
gnu/packages/mate.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/password-utils.scm,
gnu/packages/polkit.scm, gnu/packages/qt.scm,
gnu/packages/sssd.scm, gnu/packages/storage.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/xml.scm: Adjust
accordingly.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add nss.scm.
2019-04-04 13:14:57 +00:00
|
|
|
|
#:use-module (gnu packages nss)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages openldap)
|
|
|
|
|
#:use-module (gnu packages pdf)
|
2015-05-04 20:27:32 +00:00
|
|
|
|
#:use-module (gnu packages perl)
|
2019-01-14 15:00:35 +00:00
|
|
|
|
#:use-module (gnu packages perl-compression)
|
2015-04-27 20:09:15 +00:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-05-03 20:43:48 +00:00
|
|
|
|
#:use-module (gnu packages python)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages rdf)
|
|
|
|
|
#:use-module (gnu packages scanner)
|
gnu: Move content of openssl module into tls module.
* gnu/packages/openssl.scm (openssl, perl-net-ssleay): Move to...
* gnu/packages/tls.scm: ...here.
* gnu/packages/openssl.scm: Delete file.
* gnu-system.am (GNU_SYSTEM_MODULES): Unregister deleted file.
* gnu/packages/{admin.scm, bittorrent.scm, certs.scm, ci.scm,
cyrus-sasl.scm, databases.scm, dns.scm, ebook.scm, enlightenment.scm,
gnunet.scm, libreoffice.scm, links.scm, mail.scm, messaging.scm,
networking.scm, ntp.scm, openldap.scm, package-management.scm, pdf.scm,
python.scm, qt.scm, rdesktop.scm, rdf.scm, ruby.scm, ssh.scm,
synergy.scm, tor.scm, version-control.scm, video.scm, vpn.scm,
w3m.scm, web.scm, weechat.scm, xiph.scm}: Adapt module import.
2015-07-05 16:27:24 +00:00
|
|
|
|
#:use-module (gnu packages tls)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#:use-module (gnu packages version-control)
|
|
|
|
|
#:use-module (gnu packages xml)
|
gnu: Move contents of zip module into compression module.
* gnu/packages/zip.scm (zip, unzip, zziplib, perl-zip): Move to...
* gnu/packages/compression.scm: ...here.
* gnu/packages/zip.scm: Delete file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Unregister deleted file.
* po/packages/POTFILES.in: Unregister deleted file.
* gnu/packages/{audio, avr, bioinformatics, busybox, cdrom, ci, compression,
docbook, documentation, fonts, fpga, game-development, games, gl, gnome,
gnuzilla, graphics, guile, haskell, image, java, kodi, ldc, libreoffice,
markup, maths, mc, monitoring, music, php, pretty-print, python, scheme,
smalltalk, statistics, synergy, tex, textutils, video, web-browsers, xml,
zip}.scm, guix/build-system/{ant, font}.scm, guix/{download, packages}.scm:
Adapt module import.
2017-06-12 18:40:01 +00:00
|
|
|
|
#:use-module (gnu packages xorg))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
|
|
|
|
|
(define-public ixion
|
|
|
|
|
(package
|
|
|
|
|
(name "ixion")
|
2020-01-30 19:53:22 +00:00
|
|
|
|
(version "0.15.0")
|
2015-04-27 20:09:15 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-06-07 07:37:03 +00:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://kohei.us/files/ixion/src/libixion-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-01-30 19:53:22 +00:00
|
|
|
|
"1rmrl2zjzi4z0abf2cd54acypkccdhx2065dlyzy6xg83gv0mxmi"))))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2018-06-07 07:37:03 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("mdds" ,mdds)
|
2020-01-30 19:53:22 +00:00
|
|
|
|
("python" ,python)
|
|
|
|
|
("spdlog" ,spdlog)))
|
2015-04-27 20:09:15 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
|
|
|
|
|
(define-public orcus
|
|
|
|
|
(package
|
|
|
|
|
(name "orcus")
|
2020-01-30 20:04:34 +00:00
|
|
|
|
(version "0.15.3")
|
2015-04-30 19:23:29 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-06-07 07:37:22 +00:00
|
|
|
|
(method url-fetch)
|
2020-02-17 18:21:59 +00:00
|
|
|
|
(uri (string-append "http://kohei.us/files/orcus/src/lib"
|
|
|
|
|
"orcus-" version ".tar.xz"))
|
2018-06-07 07:37:22 +00:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-01-30 20:04:34 +00:00
|
|
|
|
"14gbnqsv5n2fm4sxa17014f440clrzls6p2w2ixk9wipg4950v9s"))))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2018-06-07 07:37:22 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("ixion" ,ixion)
|
|
|
|
|
("mdds" ,mdds)
|
|
|
|
|
("python" ,python)
|
|
|
|
|
("zlib" ,zlib)))
|
2015-04-30 19:23:29 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
|
2020-02-21 02:40:44 +00:00
|
|
|
|
(define-public unoconv
|
|
|
|
|
(package
|
|
|
|
|
(name "unoconv")
|
|
|
|
|
(version "0.9.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "unoconv" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0cb0bvyxib3xrj0jdgizhp6p057lr8kqnd3n921rin37ivcvz3ih"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'stop-hash-sniffing
|
|
|
|
|
;; Fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=39647#11>.
|
|
|
|
|
;; Submitted upsteam: <https://github.com/unoconv/unoconv/pull/531>.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "unoconv"
|
|
|
|
|
(("sys.argv\\[0\\]\\.split\\('2'\\)")
|
|
|
|
|
"os.path.basename(sys.argv[0]).split('2')"))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'unpack 'patch-find_offices
|
|
|
|
|
;; find_offices is a convoluted cross-platform treasure hunt.
|
|
|
|
|
;; Keep things simple and return the correct paths immediately.
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((libreoffice (assoc-ref inputs "libreoffice")))
|
|
|
|
|
(substitute* "unoconv"
|
|
|
|
|
(("def find_offices\\(\\):" match)
|
|
|
|
|
(string-append
|
|
|
|
|
match "\n"
|
|
|
|
|
" return [Office("
|
|
|
|
|
"'" libreoffice "/lib/libreoffice', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program', "
|
|
|
|
|
"'" libreoffice "/lib/libreoffice/program/pyuno.so', "
|
|
|
|
|
"'" libreoffice "/bin/soffice', "
|
|
|
|
|
"sys.executable, "
|
|
|
|
|
"None)]\n")))
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libreoffice" ,libreoffice)))
|
|
|
|
|
(home-page "http://dag.wiee.rs/home-made/unoconv/")
|
|
|
|
|
(synopsis "Convert between any document format supported by LibreOffice")
|
|
|
|
|
(description
|
|
|
|
|
"Unoconv is a command-line utility to convert documents from any format
|
|
|
|
|
that LibreOffice can import, to any format it can export. It can be used for
|
|
|
|
|
batch processing and can apply custom style templates and filters.
|
|
|
|
|
|
|
|
|
|
Unoconv converts between over a hundred formats, including Open Document
|
|
|
|
|
Format (@file{.odt}, @file{.ods}, @file{.odp})), Portable Document Format
|
|
|
|
|
(@file{.pdf}), HTML and XHTML, RTF, DocBook (@file{.xml}), @file{.doc} and
|
|
|
|
|
@file{.docx}), @file{.xls} and @file{.xlsx}).
|
|
|
|
|
|
|
|
|
|
All required fonts must be installed on the converting system.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:gpl2)))
|
2020-02-21 02:40:44 +00:00
|
|
|
|
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(define-public librevenge
|
|
|
|
|
(package
|
|
|
|
|
(name "librevenge")
|
2017-10-08 15:09:49 +00:00
|
|
|
|
(version "0.0.4")
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2020-02-17 18:22:36 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/librevenge/librevenge-"
|
|
|
|
|
version "/librevenge-" version ".tar.xz"))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(sha256 (base32
|
2017-10-08 15:09:49 +00:00
|
|
|
|
"1cj76cz4mqcy2mgv9l5xlc95bypyk8zbq0ls9cswqrs2y0lhfgwk"))))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2016-01-05 22:09:27 +00:00
|
|
|
|
`(("cppunit" ,cppunit)
|
2015-05-03 11:05:58 +00:00
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("zlib" ,zlib)))
|
2016-01-05 22:09:27 +00:00
|
|
|
|
(propagated-inputs ; Referenced by .la files
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(arguments
|
|
|
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
2016-01-05 22:09:27 +00:00
|
|
|
|
`(#:configure-flags '("--disable-werror"
|
|
|
|
|
;; Avoid undefined library references
|
|
|
|
|
"LDFLAGS=-lboost_system")))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/librevenge/")
|
2015-05-03 11:05:58 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-03 12:28:09 +00:00
|
|
|
|
|
|
|
|
|
(define-public libwpd
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpd")
|
2019-12-04 04:26:53 +00:00
|
|
|
|
(version "0.10.3")
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 18:08:44 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/libwpd/"
|
|
|
|
|
"libwpd-" version "/libwpd-" version ".tar.xz"))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(sha256 (base32
|
2019-12-04 04:26:53 +00:00
|
|
|
|
"02fx8bngslcj7i5g1gx2kiign4vp09wrmp5wpvix9igxcavb0r94"))))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-02-11 13:17:08 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:22:34 +00:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("librevenge" ,librevenge))) ; in Requires field of .pkg
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(inputs
|
2015-05-16 19:22:34 +00:00
|
|
|
|
`(("zlib" ,zlib)))
|
2015-05-03 12:28:09 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-03 20:43:48 +00:00
|
|
|
|
|
|
|
|
|
(define-public libe-book
|
|
|
|
|
(package
|
|
|
|
|
(name "libe-book")
|
2018-02-28 19:42:54 +00:00
|
|
|
|
(version "0.1.3")
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/libebook/libe-book-"
|
|
|
|
|
version "/libe-book-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-02-28 19:42:54 +00:00
|
|
|
|
"1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by"))))
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("gperf" ,gperf)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:31:12 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
|
|
|
`(("icu4c" ,icu4c)
|
2018-02-28 19:42:54 +00:00
|
|
|
|
("liblangtag" ,liblangtag)
|
2015-05-16 19:31:12 +00:00
|
|
|
|
("librevenge" ,librevenge)
|
|
|
|
|
("libxml2" ,libxml2)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-03 20:43:48 +00:00
|
|
|
|
(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).")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
|
2018-06-07 06:30:41 +00:00
|
|
|
|
(define-public libepubgen
|
|
|
|
|
(package
|
|
|
|
|
(name "libepubgen")
|
|
|
|
|
(version "0.1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/libepubgen/libepubgen-"
|
|
|
|
|
version "/libepubgen-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1b8mc9zzrqypj1v9zdy3ybc48pw0rfr06cyi7n6grvybjjwq9q03"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libxml2" ,libxml2)
|
|
|
|
|
("boost" ,boost)))
|
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
|
|
|
`(("librevenge" ,librevenge)))
|
|
|
|
|
(home-page "https://sourceforge.net/projects/libepubgen/")
|
|
|
|
|
(synopsis "EPUB generator library for librevenge")
|
|
|
|
|
(description "libepubgen is an EPUB generator for librevenge. It supports
|
|
|
|
|
librevenge's text document interface and--currently in a very limited
|
|
|
|
|
way--presentation and vector drawing interfaces.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2018-06-07 06:30:41 +00:00
|
|
|
|
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(define-public libwpg
|
|
|
|
|
(package
|
|
|
|
|
(name "libwpg")
|
2019-03-16 18:08:04 +00:00
|
|
|
|
(version "0.3.3")
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 18:01:23 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpg/libwpg/"
|
|
|
|
|
"libwpg-" version "/libwpg-" version ".tar.xz"))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(sha256 (base32
|
2019-03-16 18:08:04 +00:00
|
|
|
|
"074x159immf139szkswv2zapnq75p7xk10dbha2p9193hgwggcwr"))))
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:34:14 +00:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("libwpd" ,libwpd))) ; in Requires field of .pkg
|
2015-05-04 20:27:32 +00:00
|
|
|
|
(inputs
|
2015-05-16 19:34:14 +00:00
|
|
|
|
`(("perl" ,perl)
|
2015-05-04 20:27:32 +00:00
|
|
|
|
("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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual-licensed
|
2015-05-06 19:18:32 +00:00
|
|
|
|
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(define-public libcmis
|
|
|
|
|
(package
|
|
|
|
|
(name "libcmis")
|
2019-01-02 23:38:28 +00:00
|
|
|
|
(version "0.5.2")
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2017-03-21 07:45:09 +00:00
|
|
|
|
(uri (string-append "https://github.com/tdf/libcmis/releases/download/v"
|
2019-01-02 23:38:28 +00:00
|
|
|
|
version "/libcmis-" version ".tar.xz"))
|
2017-03-21 07:45:09 +00:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-01-02 23:38:28 +00:00
|
|
|
|
"18h0a2gsfxvlv03nlcfvw9bzsflq5sin9agq6za103hr0ab8vcfp"))))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:37:20 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
|
|
|
`(("curl" ,curl)
|
|
|
|
|
("libxml2" ,libxml2)))
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(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"
|
2019-02-11 13:17:08 +00:00
|
|
|
|
;; XXX: A configure test fails with GCC7 when including Boost headers.
|
|
|
|
|
"--disable-werror"
|
2015-05-14 15:24:03 +00:00
|
|
|
|
;; During configure, the boost headers are found, but linking
|
|
|
|
|
;; fails without the following flag.
|
|
|
|
|
(string-append "--with-boost="
|
2019-01-02 23:38:28 +00:00
|
|
|
|
(assoc-ref %build-inputs "boost")))))
|
2017-03-21 07:45:09 +00:00
|
|
|
|
(home-page "https://github.com/tdf/libcmis")
|
2015-05-14 15:24:03 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license
|
|
|
|
|
(list license:mpl1.1 license:gpl2+ license:lgpl2.1+)))) ; triple license
|
2015-05-14 15:24:03 +00:00
|
|
|
|
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(define-public libabw
|
|
|
|
|
(package
|
|
|
|
|
(name "libabw")
|
2019-09-04 18:28:21 +00:00
|
|
|
|
(version "0.1.3")
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-08-21 19:55:08 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libabw/"
|
|
|
|
|
"libabw-" version ".tar.xz"))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(sha256 (base32
|
2019-09-04 18:28:21 +00:00
|
|
|
|
"1vbfrmnvib3cym0yyyabnd8xpx4f7wp20vnn09s6dln347fajqz7"))))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("gperf" ,gperf)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:50:00 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
|
|
|
`(("librevenge" ,librevenge)
|
2015-05-06 19:18:32 +00:00
|
|
|
|
("libxml2" ,libxml2)))
|
2015-05-16 19:50:00 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-06 19:18:32 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
|
|
|
|
|
(define-public libcdr
|
|
|
|
|
(package
|
|
|
|
|
(name "libcdr")
|
2020-02-05 12:23:11 +00:00
|
|
|
|
(version "0.1.6")
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-01-02 22:11:36 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
2015-05-06 19:34:49 +00:00
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2020-02-05 12:23:11 +00:00
|
|
|
|
"0qgqlw6i25zfq1gf7f6r5hrhawlrgh92sg238kjpf2839aq01k81"))))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2017-10-08 15:21:21 +00:00
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("doxygen" ,doxygen)
|
2015-05-06 19:34:49 +00:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:54:02 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
|
|
|
`(("icu4c" ,icu4c)
|
2015-05-06 19:34:49 +00:00
|
|
|
|
("lcms" ,lcms)
|
|
|
|
|
("librevenge" ,librevenge)
|
|
|
|
|
("zlib" ,zlib)))
|
2015-05-16 19:54:02 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-06 19:34:49 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
|
|
|
|
|
(define-public libetonyek
|
|
|
|
|
(package
|
|
|
|
|
(name "libetonyek")
|
2019-01-02 22:12:16 +00:00
|
|
|
|
(version "0.1.9")
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2019-01-02 22:12:16 +00:00
|
|
|
|
"0jhsbdimiyijdqriy0zzkjjgc4wi6fjimhdg4mdybrlwg7l7f5p6"))))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2017-03-27 18:16:32 +00:00
|
|
|
|
(arguments
|
2020-01-30 20:04:50 +00:00
|
|
|
|
`(#:configure-flags '("--with-mdds=1.5")))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
|
("gperf" ,gperf)
|
2017-11-11 06:11:09 +00:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 19:57:18 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2019-01-02 22:22:58 +00:00
|
|
|
|
`(("liblangtag" ,liblangtag)
|
|
|
|
|
("librevenge" ,librevenge)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
("zlib" ,zlib)))
|
2015-05-16 19:57:18 +00:00
|
|
|
|
(inputs
|
2019-01-02 22:22:58 +00:00
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("glm" ,glm)
|
|
|
|
|
("mdds" ,mdds)))
|
2015-05-06 19:42:51 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 19:47:45 +00:00
|
|
|
|
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(define-public liblangtag
|
|
|
|
|
(package
|
|
|
|
|
(name "liblangtag")
|
2020-02-17 05:07:12 +00:00
|
|
|
|
(version "0.6.3")
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://bitbucket.org/tagoh/liblangtag/downloads/"
|
2020-02-17 04:54:58 +00:00
|
|
|
|
"liblangtag-" version ".tar.bz2"))
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(sha256
|
2020-02-17 05:07:12 +00:00
|
|
|
|
(base32 "1g9kwxx60q0hpwvs66ys1cb9qg54hfvbivadwli8sfpc085a44hz"))))
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("libtool" ,libtool)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libxml2" ,libxml2)))
|
2017-12-26 01:08:30 +00:00
|
|
|
|
(home-page "https://bitbucket.org/tagoh/liblangtag")
|
2016-03-07 10:42:02 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:lgpl3+ license:mpl2.0)))) ; dual license
|
2016-03-07 10:42:02 +00:00
|
|
|
|
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(define-public libexttextcat
|
|
|
|
|
(package
|
|
|
|
|
(name "libexttextcat")
|
2017-10-08 15:27:12 +00:00
|
|
|
|
(version "3.4.5")
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 15:27:12 +00:00
|
|
|
|
"1j6sjwkyhqvsgyw938bxxfwkzzi1mahk66g5342lv6j89jfvrz8k"))))
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(build-system gnu-build-system)
|
gnu: Use HTTPS for supported freedesktop.org home pages.
* gnu/packages/fontutils.scm (fontconfig)[home-page]: Use HTTPS.
* gnu/packages/freedesktop.scm (python-pyxdg, accountsservice)
(modem-manager, telepathy-mission-control, telepathy-mission-control)
(colord-gtk, desktop-file-utils)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (libspectre)[home-page]: Likewise.
* gnu/packages/glib.scm (dbus, dbus-glib, telepathy-glib)[home-page]:
Likewise.
* gnu/packages/gnome.scm (shared-mime-info, hicolor-icon-theme)
(libxklavier, colord, upower)[home-page]: Likewise.
* gnu/packages/gstreamer.scm (orc, python-gst)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (sound-theme-freedesktop)[home-page]:
Likewise.
* gnu/packages/libreoffice.scm (libexttextcat)[home-page]: Likewise.
* gnu/packages/polkit.scm (polkit-gnome, polkit-gnome)[home-page]:
Likewise.
* gnu/packages/pulseaudio.scm (pavucontrol)[home-page]: Likewise.
* gnu/packages/python.scm (python-dbus)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (startup-notification)[home-page]: Likewise.
2018-02-24 12:44:26 +00:00
|
|
|
|
(home-page "https://www.freedesktop.org/wiki/Software/libexttextcat/")
|
2015-05-06 19:47:45 +00:00
|
|
|
|
(synopsis "Text Categorization library")
|
|
|
|
|
(description "Libexttextcat is an N-Gram-Based Text Categorization
|
|
|
|
|
library primarily intended for language guessing.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (license:non-copyleft "file://LICENSE"
|
|
|
|
|
"See LICENSE in the distribution."))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
|
|
|
|
|
(define-public libfreehand
|
|
|
|
|
(package
|
|
|
|
|
(name "libfreehand")
|
2017-10-08 15:28:19 +00:00
|
|
|
|
(version "0.1.2")
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/" name "/"
|
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 15:28:19 +00:00
|
|
|
|
"1b1lvqh68rwij1yvmxy02hsmh7i74ma5767mk8mg5nx6chajshhf"))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-12-06 18:13:27 +00:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'adjust-for-ICU-65
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Fix build with ICU 65 and later. Taken from this
|
|
|
|
|
;; upstream commit, remove for libfreehand > 0.1.2:
|
|
|
|
|
;; https://gerrit.libreoffice.org/#/c/80224/
|
|
|
|
|
(substitute* "src/lib/libfreehand_utils.cpp"
|
|
|
|
|
(("U16_NEXT.*" all)
|
|
|
|
|
(string-append all ";\n")))
|
|
|
|
|
#t)))))
|
2015-05-06 19:57:42 +00:00
|
|
|
|
(native-inputs
|
2017-10-08 15:28:19 +00:00
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("doxygen" ,doxygen)
|
2015-05-06 19:57:42 +00:00
|
|
|
|
("gperf" ,gperf)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2017-10-08 15:28:19 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("icu4c" ,icu4c)
|
|
|
|
|
("lcms" ,lcms)))
|
2015-05-16 19:59:46 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
2015-05-06 19:57:42 +00:00
|
|
|
|
`(("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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
|
|
|
|
|
(define-public libmspub
|
|
|
|
|
(package
|
|
|
|
|
(name "libmspub")
|
2018-02-28 19:38:37 +00:00
|
|
|
|
(version "0.1.4")
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2018-02-28 19:38:37 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
2015-05-06 20:06:36 +00:00
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2018-02-28 19:38:37 +00:00
|
|
|
|
"1fhkn013gzg59f4z7rldpbi0nj7lgdqzxanspsqa6axvmahw2dpg"))))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 20:01:25 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
|
|
|
`(("icu4c" ,icu4c)
|
2015-05-06 20:06:36 +00:00
|
|
|
|
("librevenge" ,librevenge)
|
|
|
|
|
("zlib" ,zlib)))
|
2015-05-16 20:01:25 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-06 20:06:36 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(define-public libnumbertext
|
|
|
|
|
(package
|
|
|
|
|
(name "libnumbertext")
|
2019-03-16 17:46:42 +00:00
|
|
|
|
(version "1.0.5")
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-03-16 17:46:42 +00:00
|
|
|
|
(uri (string-append "https://github.com/Numbertext/libnumbertext/"
|
|
|
|
|
"releases/download/" version
|
|
|
|
|
"/libnumbertext-" version ".tar.xz"))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(sha256
|
2019-03-16 17:46:42 +00:00
|
|
|
|
(base32 "1xzlwhwwhvr76kfdsw5gvfjfdayz803z65h331gv5dpc9imhijg1"))))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-static")))
|
|
|
|
|
(home-page "https://github.com/Numbertext/libnumbertext")
|
|
|
|
|
(synopsis "Language-neutral @code{NUMBERTEXT} and @code{MONEYTEXT} functions")
|
|
|
|
|
(description
|
|
|
|
|
"The libnumbertext library provides language-neutral @code{NUMBERTEXT}
|
|
|
|
|
and @code{MONEYTEXT} functions for LibreOffice Calc, available for C++ and
|
|
|
|
|
Java.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:lgpl3+ license:bsd-3))))
|
2018-09-11 05:58:36 +00:00
|
|
|
|
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(define-public libpagemaker
|
|
|
|
|
(package
|
|
|
|
|
(name "libpagemaker")
|
2018-02-28 19:39:17 +00:00
|
|
|
|
(version "0.0.4")
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:24 +00:00
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libpagemaker/"
|
|
|
|
|
"libpagemaker-" version ".tar.xz"))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(sha256 (base32
|
2018-02-28 19:39:17 +00:00
|
|
|
|
"17ai8ajffr0ixxmmcv3k5vgjlcsix38ldb4fw2arild70pbsrbb6"))))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2019-02-11 13:17:08 +00:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-17 09:01:25 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2015-05-16 20:04:04 +00:00
|
|
|
|
`(("librevenge" ,librevenge)))
|
2015-05-06 20:12:43 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
|
|
|
|
|
(define-public libvisio
|
|
|
|
|
(package
|
|
|
|
|
(name "libvisio")
|
2019-09-04 18:28:42 +00:00
|
|
|
|
(version "0.1.7")
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:31 +00:00
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/libvisio/"
|
|
|
|
|
"libvisio-" version ".tar.xz"))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(sha256 (base32
|
2019-09-04 18:28:42 +00:00
|
|
|
|
"0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg"))))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("doxygen" ,doxygen)
|
|
|
|
|
("gperf" ,gperf)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 20:06:22 +00:00
|
|
|
|
(propagated-inputs ; in Requires or Requires.private field of .pkg
|
|
|
|
|
`(("icu4c" ,icu4c)
|
2015-05-06 20:25:21 +00:00
|
|
|
|
("librevenge" ,librevenge)
|
|
|
|
|
("libxml2" ,libxml2)))
|
2015-05-16 20:06:22 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)))
|
2015-05-06 20:25:21 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
|
|
|
|
|
(define-public libodfgen
|
|
|
|
|
(package
|
|
|
|
|
(name "libodfgen")
|
2018-08-08 19:54:43 +00:00
|
|
|
|
(version "0.1.7")
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:37 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libwpd/libodfgen/"
|
|
|
|
|
"libodfgen-" version "/libodfgen-" version ".tar.xz"))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(sha256 (base32
|
2018-08-08 19:54:43 +00:00
|
|
|
|
"0cdq48wlpp8m0qmndybv64r0m4vh0qsqx69cn6ms533cjlgljgij"))))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-05-16 20:08:32 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
|
|
|
|
`(("librevenge" ,librevenge)))
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(arguments
|
|
|
|
|
;; avoid triggering configure errors by simple inclusion of boost headers
|
|
|
|
|
`(#:configure-flags '("--disable-werror")))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libwpd/wiki/libodfgen/")
|
2015-05-07 20:35:13 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-07 20:48:46 +00:00
|
|
|
|
|
|
|
|
|
(define-public libmwaw
|
|
|
|
|
(package
|
|
|
|
|
(name "libmwaw")
|
2019-04-23 02:28:33 +00:00
|
|
|
|
(version "0.3.15")
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-04-23 12:11:42 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/libmwaw/libmwaw/libmwaw-"
|
|
|
|
|
version "/libmwaw-" version ".tar.xz"))
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(sha256 (base32
|
2019-04-23 02:28:33 +00:00
|
|
|
|
"1cdhm9yhanyv3w4vr73zhgyynmkhhkp3dyld7m11jd2yy04vnh04"))))
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2018-09-15 00:53:40 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2015-05-16 20:13:41 +00:00
|
|
|
|
`(("librevenge" ,librevenge)))
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("zlib" ,zlib)))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 00:30:46 +00:00
|
|
|
|
(home-page "https://sourceforge.net/p/libmwaw/wiki/Home/")
|
2015-05-07 20:48:46 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2017-03-27 18:16:19 +00:00
|
|
|
|
|
|
|
|
|
(define-public libstaroffice
|
|
|
|
|
(package
|
|
|
|
|
(name "libstaroffice")
|
2018-04-27 13:18:43 +00:00
|
|
|
|
(version "0.0.6")
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fosnola/libstaroffice/releases/download/"
|
|
|
|
|
version "/libstaroffice-" version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2018-04-27 13:18:43 +00:00
|
|
|
|
"1i0ykl0c94lc1qzb5mbyf9jr7qw8p38ja424whmhgrllh7ny203b"))))
|
2017-03-27 18:16:19 +00:00
|
|
|
|
(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, ...).")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-07 21:11:01 +00:00
|
|
|
|
|
|
|
|
|
(define-public libwps
|
|
|
|
|
(package
|
|
|
|
|
(name "libwps")
|
2018-09-15 00:38:15 +00:00
|
|
|
|
(version "0.4.10")
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
2016-07-21 06:35:30 +00:00
|
|
|
|
name "-" version "/" name "-" version ".tar.xz"))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(sha256 (base32
|
2018-09-15 00:38:15 +00:00
|
|
|
|
"1ji9zd4wxmas03g8jyx0ih0amrqfazm5874a2v9rd7va50sf088l"))))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2018-09-15 00:38:15 +00:00
|
|
|
|
(propagated-inputs ; in Requires field of .pkg
|
2015-05-16 20:16:23 +00:00
|
|
|
|
`(("librevenge" ,librevenge)))
|
2015-05-07 21:11:01 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl2.0 license:lgpl2.1+)))) ; dual license
|
2015-05-11 20:14:36 +00:00
|
|
|
|
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(define-public libzmf
|
|
|
|
|
(package
|
|
|
|
|
(name "libzmf")
|
2017-10-08 16:17:58 +00:00
|
|
|
|
(version "0.0.2")
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://dev-www.libreoffice.org/src/libzmf/libzmf-"
|
|
|
|
|
version ".tar.xz"))
|
|
|
|
|
(sha256 (base32
|
2017-10-08 16:17:58 +00:00
|
|
|
|
"08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197"))))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2018-10-27 10:50:19 +00:00
|
|
|
|
(arguments
|
|
|
|
|
;; A harmless 'sign-compare' error pops up on i686 so disable '-Werror'.
|
|
|
|
|
'(#:configure-flags '("--disable-werror")))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2017-03-27 18:15:04 +00:00
|
|
|
|
|
2015-05-11 20:14:36 +00:00
|
|
|
|
(define-public hunspell
|
|
|
|
|
(package
|
|
|
|
|
(name "hunspell")
|
2019-01-05 20:20:02 +00:00
|
|
|
|
(version "1.7.0")
|
2015-05-11 20:14:36 +00:00
|
|
|
|
(source
|
2019-01-05 20:20:02 +00:00
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/hunspell/hunspell")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0qxlkd012r45ppd21kldbq9k5ac5nmxz290z6m2kch9l56v768k1"))))
|
2015-05-11 20:14:36 +00:00
|
|
|
|
(build-system gnu-build-system)
|
2017-08-08 03:12:53 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)))
|
2016-12-20 00:06:33 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("perl" ,perl)))
|
2017-09-16 21:16:36 +00:00
|
|
|
|
(native-search-paths (list (search-path-specification
|
|
|
|
|
(variable "DICPATH")
|
|
|
|
|
(files '("share/hunspell")))))
|
2017-08-08 03:13:44 +00:00
|
|
|
|
(home-page "https://hunspell.github.io/")
|
2015-05-11 20:14:36 +00:00
|
|
|
|
(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.")
|
2016-12-20 00:06:33 +00:00
|
|
|
|
;; Triple license, including "mpl1.1 or later".
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (list license:mpl1.1 license:gpl2+ license:lgpl2.1+))))
|
2015-05-11 20:37:21 +00:00
|
|
|
|
|
2017-09-16 21:20:09 +00:00
|
|
|
|
(define (dicollecte-french-dictionary variant synopsis)
|
|
|
|
|
;; Return a French dictionary package from dicollecte.org, for the given
|
|
|
|
|
;; VARIANT.
|
|
|
|
|
(package
|
|
|
|
|
(name (match variant
|
|
|
|
|
("classique" "hunspell-dict-fr")
|
|
|
|
|
(_ (string-append "hunspell-dict-fr-" variant))))
|
2018-07-13 12:13:59 +00:00
|
|
|
|
(version "6.2")
|
2017-09-16 21:20:09 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://www.dicollecte.org/download/fr/hunspell-french-dictionaries-v"
|
|
|
|
|
version ".zip"))
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-07-13 12:13:59 +00:00
|
|
|
|
"139hfrn5p87sl8hqmgkf6sgvnxrk2mm8vd8xsm8sm98qjnwlg0f9"))))
|
2017-09-16 21:20:09 +00:00
|
|
|
|
(build-system trivial-build-system)
|
|
|
|
|
(native-inputs `(("unzip" ,unzip)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build utils))
|
|
|
|
|
#:builder (begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(srfi srfi-26))
|
|
|
|
|
|
|
|
|
|
(let* ((out (assoc-ref %outputs "out"))
|
|
|
|
|
(hunspell (string-append out "/share/hunspell"))
|
|
|
|
|
(myspell (string-append out "/share/myspell"))
|
|
|
|
|
(doc (string-append out "/share/doc/"
|
|
|
|
|
,name))
|
|
|
|
|
(unzip (assoc-ref %build-inputs "unzip")))
|
gnu: Use invoke and return #t from all builders.
* gnu/packages/admin.scm, gnu/packages/android.scm, gnu/packages/audio.scm,
gnu/packages/avr.scm, gnu/packages/base.scm, gnu/packages/bioinformatics.scm,
gnu/packages/certs.scm, gnu/packages/check.scm, gnu/packages/code.scm,
gnu/packages/commencement.scm, gnu/packages/dictionaries.scm,
gnu/packages/docbook.scm, gnu/packages/emacs.scm, gnu/packages/embedded.scm,
gnu/packages/fonts.scm, gnu/packages/games.scm, gnu/packages/gnome.scm,
gnu/packages/gnu-doc.scm, gnu/packages/guile.scm, gnu/packages/hurd.scm,
gnu/packages/javascript.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm, gnu/packages/lxde.scm,
gnu/packages/mail.scm, gnu/packages/markup.scm, gnu/packages/mate.scm,
gnu/packages/pkg-config.scm, gnu/packages/qt.scm, gnu/packages/rust.scm,
gnu/packages/scheme.scm, gnu/packages/sdl.scm, gnu/packages/statistics.scm,
gnu/packages/syncthing.scm, gnu/packages/tex.scm, gnu/packages/web.scm,
gnu/packages/wine.scm, gnu/packages/xfce.scm: In the builders of packages
using 'trivial-build-system', use invoke where appropriate, raise exceptions
on errors, and otherwise return #t.
2018-03-28 00:14:05 +00:00
|
|
|
|
(invoke (string-append unzip "/bin/unzip")
|
|
|
|
|
(assoc-ref %build-inputs "source"))
|
2017-09-16 21:20:09 +00:00
|
|
|
|
(for-each (cut install-file <> hunspell)
|
|
|
|
|
(find-files "."
|
|
|
|
|
,(string-append variant
|
|
|
|
|
"\\.(dic|aff)$")))
|
|
|
|
|
(mkdir-p myspell)
|
|
|
|
|
(symlink hunspell (string-append myspell "/dicts"))
|
|
|
|
|
(for-each (cut install-file <> doc)
|
|
|
|
|
(find-files "." "\\.(txt|org|md)$"))
|
|
|
|
|
#t))))
|
|
|
|
|
(synopsis synopsis)
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a dictionary for the Hunspell spell-checking
|
|
|
|
|
library.")
|
|
|
|
|
(home-page "https://www.dicollecte.org/home.php?prj=fr")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2017-09-16 21:20:09 +00:00
|
|
|
|
|
|
|
|
|
(define-syntax define-french-dictionary
|
|
|
|
|
(syntax-rules (synopsis)
|
|
|
|
|
((_ name variant (synopsis text))
|
|
|
|
|
(define-public name
|
|
|
|
|
(dicollecte-french-dictionary variant text)))))
|
|
|
|
|
|
|
|
|
|
(define-french-dictionary hunspell-dict-fr-classique
|
|
|
|
|
"classique"
|
|
|
|
|
;; TRANSLATORS: In French, this is "Français classique".
|
|
|
|
|
(synopsis "Hunspell dictionary for ``classic'' French (recommended)"))
|
|
|
|
|
|
|
|
|
|
(define-french-dictionary hunspell-dict-fr-moderne
|
|
|
|
|
"moderne"
|
|
|
|
|
;; TRANSLATORS: In French, this is "Français moderne".
|
|
|
|
|
(synopsis "Hunspell dictionary for ``modern'' French"))
|
|
|
|
|
|
|
|
|
|
(define-french-dictionary hunspell-dict-fr-réforme-1990
|
|
|
|
|
"reforme1990"
|
|
|
|
|
(synopsis "Hunspell dictionary for the post @dfn{1990 réforme} French"))
|
|
|
|
|
|
|
|
|
|
(define-french-dictionary hunspell-dict-fr-toutes-variantes
|
|
|
|
|
"toutesvariantes"
|
|
|
|
|
(synopsis "Hunspell dictionary for all variants of French"))
|
|
|
|
|
|
2015-05-11 20:37:21 +00:00
|
|
|
|
(define-public hyphen
|
|
|
|
|
(package
|
|
|
|
|
(name "hyphen")
|
|
|
|
|
(version "2.8.8")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2016-07-21 06:35:30 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/hunspell/Hyphen/"
|
|
|
|
|
(version-major+minor version) "/"
|
2015-05-11 20:37:21 +00:00
|
|
|
|
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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
;; Triple license, including "mpl1.1 or later".
|
|
|
|
|
(license
|
|
|
|
|
(list license:mpl1.1 license:mpl2.0 license:gpl2+ license:lgpl2.1+))))
|
2015-05-11 20:53:47 +00:00
|
|
|
|
|
|
|
|
|
(define-public mythes
|
|
|
|
|
(package
|
|
|
|
|
(name "mythes")
|
|
|
|
|
(version "1.2.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2016-07-21 06:35:30 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/hunspell/MyThes/" version "/"
|
2015-05-11 20:53:47 +00:00
|
|
|
|
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
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 12:16:07 +00:00
|
|
|
|
and to return information on pronunciations, meanings and synonyms.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license (license:non-copyleft "file://COPYING"
|
|
|
|
|
"See COPYING in the distribution."))))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(define-public libqxp
|
|
|
|
|
(package
|
|
|
|
|
(name "libqxp")
|
2019-03-16 18:00:32 +00:00
|
|
|
|
(version "0.0.2")
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://dev-www.libreoffice.org/src/libqxp/"
|
|
|
|
|
"libqxp-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-03-16 18:00:32 +00:00
|
|
|
|
"0p4lb84m05wqd8qr8ni9sp80ivlm83ffn0nxiv4m42hj22qvcdz1"))))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("boost" ,boost)
|
|
|
|
|
("icu4c" ,icu4c)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("librevenge" ,librevenge))) ; mentioned in Requires field
|
|
|
|
|
(home-page "https://www.libreoffice.org")
|
|
|
|
|
(synopsis "Library and tools for the QuarkXPress file format")
|
|
|
|
|
(description "libqxp is a library and a set of tools for reading and
|
|
|
|
|
converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|
2018-06-07 07:36:48 +00:00
|
|
|
|
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(define-public libreoffice
|
|
|
|
|
(package
|
|
|
|
|
(name "libreoffice")
|
2020-03-29 09:53:08 +00:00
|
|
|
|
(version "6.4.2.2")
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-09-11 05:59:11 +00:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(string-append
|
2018-09-11 05:59:11 +00:00
|
|
|
|
"https://download.documentfoundation.org/libreoffice/src/"
|
|
|
|
|
(version-prefix version 3) "/libreoffice-" version ".tar.xz"))
|
2020-04-03 13:58:22 +00:00
|
|
|
|
(patches (search-patches "libreoffice-poppler-compat.patch"))
|
2018-09-11 05:59:11 +00:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-03-29 09:53:08 +00:00
|
|
|
|
"06acm41q9nda8r30b13cn9zafsw1gszjdphh6lx90s09d2sf7f23"))))
|
2018-09-29 03:30:55 +00:00
|
|
|
|
(build-system glib-or-gtk-build-system)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(native-inputs
|
2018-02-11 10:46:27 +00:00
|
|
|
|
`(("bison" ,bison)
|
2018-10-06 12:50:02 +00:00
|
|
|
|
("cppunit" ,cppunit)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("flex" ,flex)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
2016-06-30 18:19:15 +00:00
|
|
|
|
("python" ,python-wrapper)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("which" ,which)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("bluez" ,bluez)
|
|
|
|
|
("boost" ,boost)
|
|
|
|
|
("clucene" ,clucene)
|
|
|
|
|
("cups" ,cups)
|
|
|
|
|
("dbus-glib" ,dbus-glib)
|
|
|
|
|
("fontconfig" ,fontconfig)
|
2019-10-29 17:45:15 +00:00
|
|
|
|
("fontforge" ,fontforge)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("gconf" ,gconf)
|
|
|
|
|
("glew" ,glew)
|
|
|
|
|
("glm" ,glm)
|
2019-11-01 12:12:31 +00:00
|
|
|
|
("gnupg" ,gnupg)
|
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("gperf" ,gperf)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
("gpgme" ,gpgme)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("graphite2" ,graphite2)
|
|
|
|
|
("gst-plugins-base" ,gst-plugins-base)
|
2017-11-10 18:38:50 +00:00
|
|
|
|
("gtk+" ,gtk+)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("harfbuzz" ,harfbuzz)
|
|
|
|
|
("hunspell" ,hunspell)
|
|
|
|
|
("hyphen" ,hyphen)
|
|
|
|
|
("libabw" ,libabw)
|
|
|
|
|
("libcdr" ,libcdr)
|
|
|
|
|
("libcmis" ,libcmis)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
("libjpeg-turbo" ,libjpeg-turbo)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("libe-book" ,libe-book)
|
2018-06-07 08:45:38 +00:00
|
|
|
|
("libepubgen" ,libepubgen)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("libetonyek" ,libetonyek)
|
|
|
|
|
("libexttextcat" ,libexttextcat)
|
|
|
|
|
("libfreehand" ,libfreehand)
|
2017-08-22 17:25:11 +00:00
|
|
|
|
("liblangtag" ,liblangtag)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
;; XXX: Perhaps this should be propagated from xmlsec.
|
|
|
|
|
("libltdl" ,libltdl)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("libmspub" ,libmspub)
|
|
|
|
|
("libmwaw" ,libmwaw)
|
2018-09-11 05:59:11 +00:00
|
|
|
|
("libnumbertext" ,libnumbertext)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("libodfgen" ,libodfgen)
|
|
|
|
|
("libpagemaker" ,libpagemaker)
|
2018-06-07 08:45:38 +00:00
|
|
|
|
("libqxp" ,libqxp)
|
2017-03-27 18:17:02 +00:00
|
|
|
|
("libstaroffice" ,libstaroffice)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("libvisio" ,libvisio)
|
|
|
|
|
("libwpg" ,libwpg)
|
|
|
|
|
("libwps" ,libwps)
|
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
|
("libxt" ,libxt)
|
2017-03-27 18:17:02 +00:00
|
|
|
|
("libzmf" ,libzmf)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("lpsolve" ,lpsolve)
|
2019-10-30 22:39:46 +00:00
|
|
|
|
("mariadb" ,mariadb "dev")
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("mdds" ,mdds)
|
|
|
|
|
("mythes" ,mythes)
|
|
|
|
|
("neon" ,neon)
|
|
|
|
|
("nspr" ,nspr)
|
|
|
|
|
("nss" ,nss)
|
|
|
|
|
("openldap" ,openldap)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("orcus" ,orcus)
|
|
|
|
|
("perl" ,perl)
|
2018-01-01 16:15:27 +00:00
|
|
|
|
("perl-archive-zip" ,perl-archive-zip)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("poppler" ,poppler)
|
|
|
|
|
("postgresql" ,postgresql)
|
|
|
|
|
("python" ,python)
|
2018-09-11 05:59:11 +00:00
|
|
|
|
("python-lxml" ,python-lxml)
|
2020-01-30 19:54:28 +00:00
|
|
|
|
("qrcodegen-cpp" ,qrcodegen-cpp)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("redland" ,redland)
|
2016-12-14 05:03:25 +00:00
|
|
|
|
("sane-backends" ,sane-backends)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("unixodbc" ,unixodbc)
|
|
|
|
|
("unzip" ,unzip)
|
|
|
|
|
("vigra" ,vigra)
|
2019-07-16 05:42:07 +00:00
|
|
|
|
("xdg-utils" ,xdg-utils)
|
2018-02-11 10:46:27 +00:00
|
|
|
|
("xmlsec" ,xmlsec-nss)
|
2015-05-29 21:49:19 +00:00
|
|
|
|
("zip" ,zip)))
|
|
|
|
|
(arguments
|
2016-03-09 09:11:32 +00:00
|
|
|
|
`(#:tests? #f ; Building the tests already fails.
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#: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)
|
2018-06-07 08:45:38 +00:00
|
|
|
|
(substitute*
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(list "sysui/CustomTarget_share.mk"
|
|
|
|
|
"solenv/gbuild/gbuild.mk"
|
2017-03-27 18:17:02 +00:00
|
|
|
|
"solenv/gbuild/platform/unxgcc.mk")
|
2018-06-07 08:45:38 +00:00
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
|
|
2020-02-21 04:19:27 +00:00
|
|
|
|
;; Use store references for strictly necessary commands,
|
|
|
|
|
;; but not for optional tools like ‘gdb’ and ‘valgrind’.
|
|
|
|
|
(for-each (lambda (command)
|
|
|
|
|
(substitute* "desktop/scripts/soffice.sh"
|
|
|
|
|
(((format #f"~a " command))
|
|
|
|
|
(format #f "~a " (which command)))))
|
|
|
|
|
(list "dirname" "grep" "uname"))
|
|
|
|
|
|
2018-06-07 08:45:38 +00:00
|
|
|
|
;; GPGME++ headers are installed in a gpgme++ subdirectory, but
|
|
|
|
|
;; files in "xmlsecurity/source/gpg/" and elsewhere expect to
|
|
|
|
|
;; find them on the include path without a prefix.
|
|
|
|
|
(substitute* '("xmlsecurity/Library_xsec_xmlsec.mk"
|
|
|
|
|
"comphelper/Library_comphelper.mk")
|
|
|
|
|
(("\\$\\$\\(INCLUDE\\)")
|
|
|
|
|
(string-append "$$(INCLUDE) -I"
|
|
|
|
|
(assoc-ref inputs "gpgme")
|
|
|
|
|
"/include/gpgme++")))
|
|
|
|
|
|
2019-07-16 05:42:07 +00:00
|
|
|
|
;; /usr/bin/xdg-open doesn't exist on Guix System.
|
|
|
|
|
(substitute* '("shell/source/unix/exec/shellexec.cxx"
|
|
|
|
|
"shell/source/unix/misc/senddoc.sh")
|
|
|
|
|
(("/usr/bin/xdg-open")
|
|
|
|
|
(string-append (assoc-ref inputs "xdg-utils")
|
|
|
|
|
"/bin/xdg-open")))
|
|
|
|
|
|
2018-06-07 08:45:38 +00:00
|
|
|
|
#t))
|
2017-08-13 11:59:46 +00:00
|
|
|
|
(add-after 'install 'bin-and-desktop-install
|
2016-12-08 09:25:18 +00:00
|
|
|
|
;; Create 'soffice' and 'libreoffice' symlinks to the executable
|
|
|
|
|
;; script.
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2017-08-13 11:59:46 +00:00
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(define (symlink-output src dst)
|
|
|
|
|
(mkdir-p (dirname (string-append out dst)))
|
|
|
|
|
(symlink (string-append out src) (string-append out dst)))
|
|
|
|
|
(define (install src dst)
|
|
|
|
|
(let ((dst (string-append out dst)))
|
|
|
|
|
(mkdir-p (dirname dst))
|
|
|
|
|
(copy-file src dst)))
|
|
|
|
|
(define (install-desktop-file app)
|
|
|
|
|
(let ((src (string-append "/lib/libreoffice/share/xdg/"
|
|
|
|
|
app ".desktop"))
|
|
|
|
|
(dst (string-append "/share/applications/libreoffice-"
|
|
|
|
|
app ".desktop")))
|
|
|
|
|
(substitute* (string-append out src)
|
|
|
|
|
(("Exec=libreoffice[0-9]+\\.[0-9]+ ")
|
|
|
|
|
(string-append "Exec=" out "/bin/libreoffice "))
|
2017-08-22 17:25:11 +00:00
|
|
|
|
(("Icon=libreoffice.*")
|
|
|
|
|
(string-append "Icon=" app "\n"))
|
2017-08-13 11:59:46 +00:00
|
|
|
|
(("LibreOffice [0-9]+\\.[0-9]+")
|
|
|
|
|
"LibreOffice"))
|
2017-08-22 17:25:11 +00:00
|
|
|
|
(symlink-output src dst)))
|
|
|
|
|
(define (install-appdata app)
|
|
|
|
|
(install-file (string-append
|
2017-08-13 11:59:46 +00:00
|
|
|
|
"sysui/desktop/appstream-appdata/"
|
|
|
|
|
"libreoffice-" app ".appdata.xml")
|
2017-08-22 17:25:11 +00:00
|
|
|
|
(string-append out "/share/appdata")))
|
2017-08-13 11:59:46 +00:00
|
|
|
|
(symlink-output "/lib/libreoffice/program/soffice"
|
|
|
|
|
"/bin/soffice")
|
|
|
|
|
(symlink-output "/lib/libreoffice/program/soffice"
|
|
|
|
|
"/bin/libreoffice")
|
|
|
|
|
(install "workdir/CustomTarget/sysui/share/libreoffice/openoffice.keys"
|
|
|
|
|
"/share/mime-info/libreoffice.keys")
|
|
|
|
|
(install "workdir/CustomTarget/sysui/share/libreoffice/openoffice.mime"
|
|
|
|
|
"/share/mime-info/libreoffice.mime")
|
|
|
|
|
(install
|
|
|
|
|
"workdir/CustomTarget/sysui/share/libreoffice/openoffice.org.xml"
|
|
|
|
|
"/share/mime/packages/libreoffice.xml")
|
|
|
|
|
(for-each install-desktop-file
|
2017-08-22 17:25:11 +00:00
|
|
|
|
'("base" "calc" "draw" "impress" "writer"
|
|
|
|
|
"math" "startcenter"))
|
|
|
|
|
(for-each install-appdata
|
2017-08-13 11:59:46 +00:00
|
|
|
|
'("base" "calc" "draw" "impress" "writer"))
|
2017-08-22 17:25:11 +00:00
|
|
|
|
(mkdir-p (string-append out "/share/icons/hicolor"))
|
2017-08-13 11:59:46 +00:00
|
|
|
|
(copy-recursively "sysui/desktop/icons/hicolor"
|
2017-08-22 17:25:11 +00:00
|
|
|
|
(string-append out "/share/icons/hicolor")))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
#t)))
|
|
|
|
|
#:configure-flags
|
|
|
|
|
(list
|
|
|
|
|
"--enable-release-build"
|
2018-10-31 01:36:08 +00:00
|
|
|
|
;; Avoid using all cpu cores by default
|
|
|
|
|
(format #f "--with-parallelism=~d" (parallel-job-count))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
"--disable-fetch-external" ; disable downloads
|
|
|
|
|
"--with-system-libs" ; enable all --with-system-* flags
|
|
|
|
|
(string-append "--with-boost-libdir="
|
|
|
|
|
(assoc-ref %build-inputs "boost") "/lib")
|
2016-01-05 22:09:27 +00:00
|
|
|
|
;; Avoid undefined symbols required by boost::spirit
|
|
|
|
|
"LDFLAGS=-lboost_system"
|
2015-05-29 21:49:19 +00:00
|
|
|
|
;; 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.
|
|
|
|
|
"--disable-coinmp"
|
|
|
|
|
"--disable-firebird-sdbc" ; embedded firebird
|
2018-02-11 10:46:27 +00:00
|
|
|
|
;; XXX: PDFium support requires fetching an external tarball and
|
|
|
|
|
;; patching the build scripts to work with GCC5. Try enabling this
|
|
|
|
|
;; when our default compiler is >=GCC 6.
|
|
|
|
|
"--disable-pdfium"
|
2017-11-11 08:23:51 +00:00
|
|
|
|
"--disable-gtk" ; disable use of GTK+ 2
|
2019-10-29 17:45:15 +00:00
|
|
|
|
"--without-doxygen"
|
|
|
|
|
"--enable-build-opensymbol")))
|
2015-05-29 21:49:19 +00:00
|
|
|
|
(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.")
|
2020-02-17 20:21:55 +00:00
|
|
|
|
(license license:mpl2.0)))
|