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.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-01-20 06:00:54 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Gperf(AutotoolsPackage):
|
2015-01-20 06:00:54 +08:00
|
|
|
"""GNU gperf is a perfect hash function generator. For a given
|
|
|
|
list of strings, it produces a hash function and hash table, in
|
|
|
|
form of C or C++ code, for looking up a value depending on the
|
|
|
|
input string. The hash function is perfect, which means that the
|
|
|
|
hash table has no collisions, and the hash table lookup needs a
|
|
|
|
single string comparison only."""
|
|
|
|
|
|
|
|
homepage = "https://www.gnu.org/software/gperf/"
|
2018-08-16 14:27:21 +08:00
|
|
|
url = "https://ftpmirror.gnu.org/gperf/gperf-3.0.4.tar.gz"
|
2015-01-20 06:00:54 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('3.0.4', sha256='767112a204407e62dbc3106647cf839ed544f3cf5d0f0523aaa2508623aad63e')
|
2015-01-20 06:00:54 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
# NOTE: `make check` is known to fail tests
|