summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tdengine/package.py
blob: 55eab3ab5e81165fa0b62e482aa4f80d013a880c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2023 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.package 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"

    license("AGPL-3.0-only")

    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)