Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:15:26

0001 # Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
0002 # Spack Project Developers. See the top-level COPYRIGHT file for details.
0003 #
0004 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
0005 
0006 from spack.package import *
0007 
0008 
0009 class Farmhash(AutotoolsPackage):
0010     """FarmHash is a family of hash functions."""
0011 
0012     homepage = "https://github.com/google/farmhash"
0013     url = "https://github.com/google/farmhash"
0014     git = "https://github.com/google/farmhash"
0015 
0016     maintainers = ["wdconinc"]
0017 
0018     version("master", branch="master")
0019 
0020     depends_on("cxx", type="build")
0021 
0022     depends_on("autoconf", type="build", when="@master")
0023     depends_on("automake", type="build", when="@master")
0024     depends_on("libtool", type="build", when="@master")
0025 
0026     force_autoreconf = True
0027 
0028     patch(
0029         "https://github.com/google/farmhash/pull/25.patch",
0030         sha256="cbb6709d51d8d517d5df8a47e5c1867610dc5352152e78b64dec75620f95cc97",
0031     )