gnu: qemu: Remove dependency on Samba.
[jackhill/guix/guix.git] / gnu / packages / ccache.scm
CommitLineData
5bbd6bf1
EB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.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 ccache)
20 #:use-module (guix packages)
21 #:use-module ((guix licenses) #:select (gpl3+))
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages)
25 #:use-module (gnu packages perl)
26 #:use-module (gnu packages compression))
27
28(define-public ccache
29 (package
30 (name "ccache")
31 (version "3.1.9")
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "https://www.samba.org/ftp/ccache/ccache-"
36 version ".tar.xz"))
37 (sha256
38 (base32
39 "1i06015jjc0n55xgvhv2h37fjp0i7z8a10s0v40f87c5mprzv0a9"))
40 (patches (list (search-patch "ccache-stdc-predef-test.patch")))))
41 (build-system gnu-build-system)
42 (native-inputs `(("perl" ,perl))) ;for test.sh
43 (inputs `(("zlib" ,zlib)))
44 (arguments
45 '(#:phases (alist-cons-before
46 'check 'patch-test-shebangs
47 (lambda _
48 (substitute* '("test/test_hashutil.c" "test.sh")
49 (("#!/bin/sh") (string-append "#!" (which "sh")))))
50 %standard-phases)))
51 (home-page "https://ccache.samba.org/")
52 (synopsis "Compiler cache")
53 (description
54 "Ccache is a compiler cache. It speeds up recompilation by caching
55previous compilations and detecting when the same compilation is being done
56again. Supported languages are C, C++, Objective-C and Objective-C++.")
57 (license gpl3+)))