neartree: new package at v3.1 (#21534)
This commit is contained in:
parent
1e7fe89e1d
commit
7add9de2e5
1 changed files with 27 additions and 0 deletions
27
var/spack/repos/builtin/packages/neartree/package.py
Normal file
27
var/spack/repos/builtin/packages/neartree/package.py
Normal 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
|
Loading…
Reference in a new issue