summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/panda/package.py
blob: 72bac89f33aee9a35bad8cb604295dae3c8a3b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 Panda(CMakePackage):
    """PANDA: Parallel AdjaceNcy Decomposition Algorithm"""
    homepage = "http://comopt.ifi.uni-heidelberg.de/software/PANDA/index.html"
    url      = "http://comopt.ifi.uni-heidelberg.de/software/PANDA/downloads/panda-2016-03-07.tar"

    version('2016-03-07', 'b06dc312ee56e13eefea9c915b70fcef')

    # Note: Panda can also be built without MPI support

    depends_on('cmake@2.6.4:', type='build')
    depends_on('mpi')