summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/margo/package.py
blob: 30e124cac6424806d01e9db1f6e350a2be4cc79d (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
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2013-2020 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 Margo(AutotoolsPackage):
    """Argobots bindings to the Mercury RPC API"""

    homepage = "https://xgitlab.cels.anl.gov/sds/margo"
    url      = "https://xgitlab.cels.anl.gov/sds/margo/-/archive/v0.4.3/margo-v0.4.3.tar.gz"
    git      = "https://xgitlab.cels.anl.gov/sds/margo.git"

    maintainers = ['fbudin69500', 'chuckatkins', 'carns']

    version('develop', branch='master')
    version('0.4.3', sha256='61a634d6983bee2ffa06e1e2da4c541cb8f56ddd9dd9f8e04e8044fb38657475')

    variant('shared', default=True,
            description='Build shared libraries instead of static libraries')

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

    depends_on('mercury')
    depends_on('argobots@1.0rc1:')

    build_directory = 'spack-build'

    def configure_args(self):
        spec = self.spec
        args = []

        if '+shared' in spec:
            args.append('--enable-shared')
            args.append('--disable-static')
        else:
            args.append('--enable-static')
            args.append('--disable-shared')

        return args

    def autoreconf(self, spec, prefix):
        sh = which('sh')
        sh('./prepare.sh')