summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cityhash/package.py
blob: a8e549eb196ef8637b538174fcd5a84b5de6a078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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)

from spack.package import *


class Cityhash(AutotoolsPackage):
    """CityHash, a family of hash functions for strings."""

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

    version("master", branch="master")
    version("2013-07-31", commit="8af9b8c2b889d80c22d6bc26ba0df1afb79a30db")

    def configure_args(self):
        return ["--enable-sse4.2"]