spack/var/spack/repos/builtin/packages/pmgr-collective/package.py

20 lines
725 B
Python
Raw Normal View History

# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2014-03-14 06:56:29 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2014-03-14 06:56:29 +08:00
from spack import *
2016-08-10 16:50:00 +08:00
2014-03-14 06:56:29 +08:00
class PmgrCollective(Package):
"""PMGR_COLLECTIVE provides a scalable network for bootstrapping
MPI jobs."""
homepage = "http://www.sourceforge.net/projects/pmgrcollective"
url = "http://downloads.sourceforge.net/project/pmgrcollective/pmgrcollective/PMGR_COLLECTIVE-1.0/pmgr_collective-1.0.tgz"
version('1.0', '0384d008774274cc3fc7b4d810dfd07e')
2014-03-14 06:56:29 +08:00
def install(self, spec, prefix):
make('PREFIX="' + prefix + '"')
make('PREFIX="' + prefix + '"', "install")