gnu: All snippets report errors using exceptions, else return #t.
[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>
3ec7ad8e
LC
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages unrtf)
21 #:use-module (guix licenses)
22 #:use-module (guix packages)
23 #:use-module (guix download)
cbfb8934
LC
24 #:use-module (guix build-system gnu)
25 #:use-module (guix gexp)
5f0fabec 26 #:use-module (gnu packages)
cbfb8934
LC
27 #:use-module (gnu packages autotools)
28 #:use-module (gnu packages m4)
29 #:use-module (gnu packages base))
3ec7ad8e
LC
30
31(define-public unrtf
32 (package
33 (name "unrtf")
cbfb8934 34 (version "0.21.9")
3ec7ad8e
LC
35 (source (origin
36 (method url-fetch)
257b6c43
AE
37 (uri (string-append "mirror://gnu/unrtf/unrtf-"
38 version ".tar.gz"))
5f0fabec 39 (patches (search-patches "unrtf-CVE-2016-10091.patch"))
3ec7ad8e
LC
40 (sha256
41 (base32
cbfb8934
LC
42 "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2"))
43 (modules '((guix build utils)))
44 (snippet
45 #~(begin
46 ;; The tarball includes site-specific generated files.
47 ;; Remove them.
48 (for-each delete-file '("config.log" "config.h"))
49 (for-each delete-file
50 (find-files "." "^Makefile$"))
51
52 ;; The config/ directory contains dangling symlinks to
53 ;; /usr/share/automake.
54 (for-each delete-file (find-files "config"))
3ec7ad8e 55
cbfb8934
LC
56 ;; Regenerate the whole thing.
57 (setenv "PATH"
58 (string-append #$autoconf "/bin:"
59 #$automake "/bin:"
60 #$m4 "/bin:"
61 #$grep "/bin:" #$sed "/bin:"
62 #$coreutils "/bin:"
63 (getenv "PATH")))
6cbee49d 64 (invoke "autoreconf" "-vfi")))))
cbfb8934 65 (build-system gnu-build-system)
6fd52309 66 (home-page "https://www.gnu.org/software/unrtf/")
3ec7ad8e
LC
67 (synopsis "Convert Rich Text Format documents to other formats")
68 (description
e881752c 69 "GNU UnRTF converts text documents from RTF to HTML, LaTeX, or troff.
79c311b8
LC
70It supports changes in font characteristics, underlines and strikethroughs,
71superscripts and subscripts, and more.")
3ec7ad8e 72 (license gpl2+)))