summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/votca-csg/package.py
blob: ca2f1b39b32e4d3512480b882024facec22af5b9 (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
# 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 VotcaCsg(CMakePackage):
    """Versatile Object-oriented Toolkit for Coarse-graining
       Applications (VOTCA) is a package intended to reduce the amount of
       routine work when doing systematic coarse-graining of various
       systems. The core is written in C++.

       This package contains the VOTCA coarse-graining engine.
    """
    homepage = "http://www.votca.org"
    url      = "https://github.com/votca/csg/tarball/v1.4"
    git      = "https://github.com/votca/csg.git"

    version('develop', branch='master')
    version('1.4', 'd009e761e5e3afd51eed89c420610a67')
    version('1.4.1', 'e4195d69db2036e9d76f22115ae31f81')

    depends_on("cmake@2.8:", type='build')
    depends_on("votca-tools@1.4:1.4.999", when='@1.4:1.4.999')
    depends_on("votca-tools@develop", when='@develop')
    depends_on("gromacs~mpi@5.1:")
    depends_on("hdf5~mpi")