summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tiptop/package.py
blob: 8801b56efced278be50c1304da89224a78649f1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 import *


class Tiptop(AutotoolsPackage):
    """Tiptop is a performance monitoring tool for Linux."""

    homepage = "https://github.com/FeCastle/tiptop"
    git      = "https://github.com/FeCastle/tiptop.git"

    version('master', commit='529886d445ec32febad14246245372a8f244b3eb')

    depends_on('papi')
    depends_on('byacc', type='build')
    depends_on('flex', type='build')

    patch('NR_perf_counter_open_aarch64.patch', when='target=aarch64:')