summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/numactl/package.py
blob: e17a279d2181dedb87093190a6bcb4740b8a508a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2018 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 Numactl(AutotoolsPackage):
    """NUMA support for Linux"""

    homepage = "http://oss.sgi.com/projects/libnuma/"
    url      = "https://github.com/numactl/numactl/archive/v2.0.11.tar.gz"

    version('2.0.11',     'b56d2367217cde390b4d8087e00773b8')

    patch('numactl-2.0.11-sysmacros.patch', when="@2.0.11")

    depends_on('autoconf', type='build')
    depends_on('automake', type='build')
    depends_on('libtool',  type='build')
    depends_on('m4',       type='build')