gnu: icecat: Apply fixes for CVE-2015-{0817,0818} and other selected bugs.
[jackhill/guix/guix.git] / gnu / packages / m4.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
21c203a5 2;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
c44899a2 3;;;
233e7676 4;;; This file is part of GNU Guix.
c44899a2 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
c44899a2
LC
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
233e7676 11;;; GNU Guix is distributed in the hope that it will be useful, but
c44899a2
LC
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
233e7676 17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c44899a2 18
1ffa7090 19(define-module (gnu packages m4)
4a44e743 20 #:use-module (guix licenses)
59a43334 21 #:use-module (gnu packages)
c44899a2 22 #:use-module (guix packages)
87f5d366 23 #:use-module (guix download)
c44899a2
LC
24 #:use-module (guix build-system gnu))
25
26(define-public m4
27 (package
28 (name "m4")
1fa49a2c 29 (version "1.4.17")
c44899a2 30 (source (origin
87f5d366 31 (method url-fetch)
0db342a5 32 (uri (string-append "mirror://gnu/m4/m4-"
c44899a2
LC
33 version ".tar.bz2"))
34 (sha256
35 (base32
6ac8aa3d 36 "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf"))))
c44899a2 37 (build-system gnu-build-system)
21c203a5
LC
38 (arguments
39 ;; XXX: Disable tests on those platforms with know issues.
40 `(#:tests? ,(not (member (%current-system)
41 '("x86_64-darwin"
42 "i686-cygwin"
43 "i686-sunos")))
21c203a5
LC
44 #:phases (alist-cons-before
45 'check 'pre-check
46 (lambda* (#:key inputs #:allow-other-keys)
47 ;; Fix references to /bin/sh.
48 (let ((bash (assoc-ref inputs "bash")))
49 (for-each patch-shebang
50 (find-files "tests" "\\.sh$"))
51 (substitute* (find-files "tests"
52 "posix_spawn")
53 (("/bin/sh")
54 (format #f "~a/bin/bash" bash)))))
55 %standard-phases)))
f50d2669 56 (synopsis "Macro processor")
c44899a2 57 (description
a22dc0c4 58 "GNU M4 is an implementation of the M4 macro language, which features
79c311b8
LC
59some extensions over other implementations, some of which are required by GNU
60Autoconf. It is used as a macro processor, which means it processes text,
61expanding macros as it encounters them. It also has some built-in functions,
62for example to run shell commands or to do arithmetic.")
4a44e743 63 (license gpl3+)
c44899a2 64 (home-page "http://www.gnu.org/software/m4/")))