summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/highwayhash/package.py
blob: 6a187b73233a862917896feed23a90d8ea35821f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

import os

from spack.package import *


class Highwayhash(MakefilePackage):
    """Strong (well-distributed and unpredictable) hashes:
    - Portable implementation of SipHash
    - HighwayHash, a 5x faster SIMD hash with security claims
    """

    homepage = "https://github.com/google/highwayhash"
    git = "https://github.com/google/highwayhash.git"

    license("Apache-2.0")

    version("dfcb97", commit="dfcb97ca4fe9277bf9dc1802dd979b071896453b")

    build_targets = ["all", "libhighwayhash.a"]

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        mkdirp(prefix.include)

        # The following are CPU and compiler flag specific
        if os.path.exists("libhighwayhash.a"):
            mkdirp(prefix.lib)
            install("libhighwayhash.a", prefix.lib)
        if os.path.exists("highwayhash_test"):
            install("highwayhash_test", prefix.bin)
        if os.path.exists("benchmark"):
            install("benchmark", prefix.bin)

        # Always installed
        install("profiler_example", prefix.bin)
        install("nanobenchmark_example", prefix.bin)
        install("vector_test", prefix.bin)
        install("sip_hash_test", prefix.bin)
        install("highwayhash/*.h", prefix.include)