summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mco/package.py
blob: 39078a5b3763fb36fdf883bd2251855a562e0ce9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 RMco(RPackage):
    """Functions for multiple criteria optimization using genetic algorithms
       and related test problems"""

    homepage = "https://github.com/cran/mco"
    url      = "https://cloud.r-project.org/src/contrib/mco_1.0-15.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/mco"

    version('1.0-15.1', sha256='3c13ebc8c1f1bfa18f3f95b3998c57fde5259876e92456b6c6d4c59bef07c193')
    version('1.0-15', sha256='a25e3effbb6dcae735fdbd6c0bfc775e9fbbcc00dc00076b69c53fe250627055')

    depends_on('r@3.0.0:', type=('build', 'run'))