gnu: Some cleanup based on lint checkers.
[jackhill/guix/guix.git] / gnu / packages / cook.scm
CommitLineData
feadf100
JD
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 John Darrington <jmd@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
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;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
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
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages cook)
20 #:use-module (guix packages)
21 #:use-module (guix licenses)
22 #:use-module (guix download)
23 #:use-module (gnu packages ed)
24 #:use-module (gnu packages bison)
25 #:use-module (gnu packages groff)
26 #:use-module (gnu packages compression)
27 #:use-module (guix build-system gnu))
28
29(define-public cook
30 (package
31 (name "cook")
32 (version "2.34")
33 (source
34 (origin
35 (method url-fetch)
36 (uri (string-append
37 "http://miller.emu.id.au/pmiller/software/cook/cook-" version
38 ".tar.gz"))
39 (sha256
40 (base32
41 "104saqnqql1l7zr2pm3f718fdky3ds8j07c6xvwrs1rfkhrw58yw"))))
42 (build-system gnu-build-system)
43 (arguments
44 `(#:parallel-build? #f ; There are some nasty racy rules in the Makefile.
45 #:phases
46 (alist-cons-before
47 'configure 'pre-conf
48 (lambda _
49 (substitute* (append '("common/env.c")
50 (find-files "test" "\\.sh"))
51 (("/bin/sh") (which "sh")))
52
53 ;; Guix's binutils (because it wants bit-reproducable builds) is
54 ;; is configured with the --enable-deterministic-archives flag.
55 ;; This means the timestamp of files appended to an ar archive
56 ;; are automatically and silently mutated to 00:00 1 Jan 1970
57 ;; which plays havoc with this test, for which correct timestamps
58 ;; are very important. Adding the U flag undoes the effect of
59 ;; --enable-deterministic-archives and allows this test to work
60 ;; again.
61 (substitute* "test/00/t0077a.sh"
62 (("ar qc") "ar qcU"))
63
64 (setenv "SH" (which "sh")))
65 %standard-phases)))
66 (native-inputs `(("bison" ,bison)
67 ;; For building the documentation:
68 ("groff" ,groff)
69 ;; For the tests:
70 ("sharutils" ,sharutils)
71 ;; One test wants rsh. However there is no rsh server
72 ;; running in the build environment and so far as I'm
73 ;; aware, it cannot be started without root.
74 ;; This test is therefore just skipped.
75 ;; ("inetutils" ,inetutils)
76 ("ed" ,ed)))
77 (home-page "http://miller.emu.id.au/pmiller/software/cook")
9e771e3b 78 (synopsis "Tool for constructing files")
35b9e423
EB
79 (description "Cook is a tool for constructing files. It is given a set of
80files to create, and recipes of how to create them. In any non-trivial program
feadf100 81there will be prerequisites to performing the actions necessary to creating
35b9e423 82any file, such as include files. Cook provides a mechanism to define these.")
feadf100 83 (license gpl3+)))