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