neartree: new package at v3.1 (#21534)

This commit is contained in:
ketsubouchi 2021-02-13 03:00:54 +09:00 committed by GitHub
parent 1e7fe89e1d
commit 7add9de2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,27 @@
# Copyright 2013-2021 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 Neartree(MakefilePackage):
"""This is a release of an API for finding nearest neighbors among
points in spaces of arbitrary dimensions."""
homepage = "http://neartree.sourceforge.net/"
url = "https://downloads.sourceforge.net/project/neartree/neartree/NearTree-3.1/NearTree-3.1.tar.gz"
version('3.1', sha256='07b668516f15a7c13c219fd005b14e73bced5dc6b23857edcc24d3e5cf0d3be3')
depends_on('libtool', type='build')
depends_on('cvector')
def edit(self, spec, prefix):
mf = FileFilter('Makefile')
mf.filter(r'^CC.+', "CC = {0}".format(spack_cc))
mf.filter(r'^INSTALL_PREFIX .+', "INSTALL_PREFIX = {0}".format(prefix))
def build(self, spec, prefix):
pass