gnu: emacs-svg-icon: Fix grammar.
[jackhill/guix/guix.git] / gnu / packages / unrtf.scm
CommitLineData
3ec7ad8e 1;;; GNU Guix --- Functional package management for GNU
cbfb8934 2;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
257b6c43 3;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
30e06c2c 4;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
3ec7ad8e
LC
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages unrtf)
22 #:use-module (guix licenses)
23 #:use-module (guix packages)
24 #:use-module (guix download)
cbfb8934
LC
25 #:use-module (guix build-system gnu)
26 #:use-module (guix gexp)
5f0fabec 27 #:use-module (gnu packages)
cbfb8934
LC
28 #:use-module (gnu packages autotools)
29 #:use-module (gnu packages m4)
30 #:use-module (gnu packages base))
3ec7ad8e
LC
31
32(define-public unrtf
33 (package
34 (name "unrtf")
30e06c2c 35 (version "0.21.10")
3ec7ad8e
LC
36 (source (origin
37 (method url-fetch)
257b6c43
AE
38 (uri (string-append "mirror://gnu/unrtf/unrtf-"
39 version ".tar.gz"))
3ec7ad8e
LC
40 (sha256
41 (base32
30e06c2c 42 "1bil6z4niydz9gqm2j861dkxmqnpc8m7hvidsjbzz7x63whj17xl"))))
cbfb8934 43 (build-system gnu-build-system)
6fd52309 44 (home-page "https://www.gnu.org/software/unrtf/")
3ec7ad8e
LC
45 (synopsis "Convert Rich Text Format documents to other formats")
46 (description
e881752c 47 "GNU UnRTF converts text documents from RTF to HTML, LaTeX, or troff.
79c311b8
LC
48It supports changes in font characteristics, underlines and strikethroughs,
49superscripts and subscripts, and more.")
30e06c2c 50 (license gpl3+)))