Skip to content
Snippets Groups Projects
Commit fc15db2f authored by Andreas Enge's avatar Andreas Enge
Browse files

gnu: Add libwpd.

* gnu/packages/libreoffice.scm (libwpd): New variable.
parent 10ca4a1d
No related branches found
No related tags found
No related merge requests found
...@@ -110,3 +110,28 @@ (define-public librevenge ...@@ -110,3 +110,28 @@ (define-public librevenge
filters. It has interfaces for text documents, vector graphics, filters. It has interfaces for text documents, vector graphics,
spreadsheets and presentations.") spreadsheets and presentations.")
(license '(mpl2.0 lgpl2.1+)))) ; dually licensed (license '(mpl2.0 lgpl2.1+)))) ; dually licensed
(define-public libwpd
(package
(name "libwpd")
(version "0.10.0")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/libwpd/" name "/" name "-"
version ".tar.xz"))
(sha256 (base32
"0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx"))))
(build-system gnu-build-system)
(native-inputs
`(("doxygen" ,doxygen)
("pkg-config" ,pkg-config)))
(inputs
`(("librevenge" ,librevenge)
("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 '(mpl2.0 lgpl2.1+)))) ; dually licensed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment