2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-01-05 00:39:58 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-01-05 00:39:58 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Ccache(AutotoolsPackage):
|
|
|
|
"""ccache is a compiler cache. It speeds up recompilation by caching
|
|
|
|
previous compilations and detecting when the same compilation is being done
|
|
|
|
again."""
|
|
|
|
|
|
|
|
homepage = "https://ccache.samba.org/"
|
2017-04-11 22:32:31 +08:00
|
|
|
url = "https://www.samba.org/ftp/ccache/ccache-3.3.4.tar.gz"
|
2017-01-05 00:39:58 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('3.3.4', sha256='1348b54e7c35dd2f8d17923389e03c546e599cfbde6459d2f31cf6f1521ec538')
|
|
|
|
version('3.3.3', sha256='87a399a2267cfac3f36411fbc12ff8959f408cffd050ad15fe423df88e977e8f')
|
|
|
|
version('3.3.2', sha256='bf4a150dea611a206a933e122bd545dd6c5111d319505e0e30fef75f88651847')
|
|
|
|
version('3.3.1', sha256='4101f9937cd6e8f50d0a5882f7e9a7312ba42c01ff41e4f359c94ae2c9b87879')
|
|
|
|
version('3.3', sha256='b220fce435fe3d86b8b90097e986a17f6c1f971e0841283dd816adb238c5fd6a')
|
|
|
|
version('3.2.9', sha256='1e13961b83a3d215c4013469c149414a79312a22d3c7bf9f946abac9ee33e63f')
|
2017-01-05 00:39:58 +08:00
|
|
|
|
|
|
|
depends_on('gperf')
|
|
|
|
depends_on('libxslt')
|
|
|
|
depends_on('zlib')
|