summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/heaptrack/package.py
blob: 7b2eeed6d2c67b89f476a7bac6c4e8ea590e5681 (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
28
29
30
31
32
33
34
35
36
37
38
# 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 Heaptrack(CMakePackage):
    """Heaptrack is a heap memory profiler that traces all memory allocations
    and annotates these events with stack traces.
    """

    homepage = "https://github.com/KDE/heaptrack"
    url = "https://github.com/KDE/heaptrack/archive/v1.1.0.tar.gz"

    license("BSD-3-Clause")

    version("1.3.0", sha256="794b067772f4e4219bb7b6ff1bc1b2134b1b242e748a2cc5c47626040c631956")
    version("1.1.0", sha256="bd247ac67d1ecf023ec7e2a2888764bfc03e2f8b24876928ca6aa0cdb3a07309")

    depends_on("boost@1.41: +program_options+exception+filesystem+system+iostreams+container")
    depends_on("cmake@2.8.9:", type="build")
    depends_on("elfutils")
    depends_on("libunwind")
    depends_on("zlib-api")
    depends_on("zstd")

    def cmake_args(self):
        spec = self.spec

        cmake_args = [
            "-DBOOST_ROOT={0}".format(spec["boost"].prefix),
            "-DBOOST_LIBRARY_DIR={0}".format(spec["boost"].prefix.lib),
            "-DBOOST_INCLUDE_DIR={0}".format(spec["boost"].prefix.include),
            "-DBOOST_NO_SYSTEM_PATHS:BOOL=ON",
            "-DBoost_NO_BOOST_CMAKE:BOOL=ON",
        ]
        return cmake_args