Add new package: tdengine (#18821)

This commit is contained in:
darmac 2020-09-24 09:11:57 +08:00 committed by GitHub
parent 15e75c03ff
commit 0aafdcfadb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,25 @@
# Copyright 2013-2020 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 Tdengine(CMakePackage):
"""An open-source big data platform designed and optimized for the
Internet of Things (IoT)."""
homepage = "https://github.com/taosdata/TDengine"
url = "https://github.com/taosdata/TDengine/archive/ver-2.0.2.2.tar.gz"
version('2.0.3.2', sha256='3eb8df894998d5592cce377b4f7e267972aee8adf9fc1ce60d1af532ffa9c1c6')
version('2.0.3.1', sha256='69418815afcac8051f1aab600415669003b4aeec4ec2aaf09cab24636edaf51f')
@when('target=aarch64:')
def cmake_args(self):
args = ['-DCPUTYPE=aarch64']
return args
def install(self, spec, prefix):
install_tree(self.build_directory + '/build', prefix)