summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/numap/package.py
blob: 0480015146a5e5125f470f8556ff635c4636fffc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2022 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 Numap(CMakePackage):
    """Numap is a Linux library dedicated to memory profiling based on
    hardware performance monitoring unit (PMU)."""

    homepage = "https://github.com/numap-library/numap"
    git      = "https://github.com/numap-library/numap.git"
    maintainers = ['trahay']

    version('master',  branch='master')
    version('2019-09-06', commit='ffcdb88c64b59b7a3220eb1077d2b237029ca96a')

    depends_on('libpfm4')