summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libquo/package.py
blob: 5b04ecab80696a4058e6c8052d8f153b4ed28458 (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
# Copyright 2013-2019 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 Libquo(AutotoolsPackage):

    """QUO (as in "status quo") is a runtime library that aids in accommodating
    thread-level heterogeneity in dynamic, phased MPI+X applications comprising
    single- and multi-threaded libraries."""

    homepage = "https://github.com/lanl/libquo"
    url      = "http://lanl.github.io/libquo/dists/libquo-1.3.tar.gz"
    git      = "https://github.com/lanl/libquo.git"

    version('develop', branch='master')
    version('1.3',   '1a1fb83d2c9e99ef5d5fcd71037ef8e8')
    version('1.2.9', '85907cfbdb8b1e57fc5fcf3bced7cfa8')

    depends_on('mpi')

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

    @when('@develop')
    def autoreconf(self, spec, prefix):
        bash = which('bash')
        bash('./autogen')

    def configure_args(self):
        return [
            'CC={0}'.format(self.spec['mpi'].mpicc),
            'FC={0}'.format(self.spec['mpi'].mpifc)
        ]