summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-convevol/package.py
blob: ea8d4595ecd70d9a6489f6cc22889e07a5433e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RConvevol(RPackage):
    """Quantifies and assesses the significance of convergent evolution"""

    homepage = "https://cran.r-project.org/package=convevol"
    url      = "https://cran.r-project.org/src/contrib/convevol_1.3.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/convevol/"

    version('1.3', sha256='d6b24b9796a559f5280e277746189d141151ade4b14cc6b4c2d9d496d7f314ac')

    depends_on('r-ape', type=('build', 'run'))
    depends_on('r-cluster', type=('build', 'run'))
    depends_on('r-geiger', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-phytools', type=('build', 'run'))