2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-05-26 03:42:49 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-05-26 03:42:49 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RVegan(RPackage):
|
|
|
|
"""Ordination methods, diversity analysis and other functions for
|
|
|
|
community and vegetation ecologists."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/vegandevs/vegan"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/vegan_2.4-3.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/vegan"
|
2017-05-26 03:42:49 +08:00
|
|
|
|
|
|
|
version('2.4-3', 'db17d4c4b9a4d421246abd5b36b00fec')
|
|
|
|
|
|
|
|
depends_on('r@3.0:')
|
|
|
|
depends_on('r-permute@0.9-0:', type=('build', 'run'))
|