20 lines
767 B
Python
20 lines
767 B
Python
# Copyright 2013-2020 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 RTrimcluster(RPackage):
|
|
"""trimcluster: Cluster analysis with trimming"""
|
|
|
|
homepage = "http://www.homepages.ucl.ac.uk/~ucakche"
|
|
url = "https://cloud.r-project.org/src/contrib/trimcluster_0.1-2.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/trimcluster"
|
|
|
|
version('0.1-2.1', sha256='b64a872a6c2ad677dfeecc776c9fe5aff3e8bab6bc6a8c86957b5683fd5d2300')
|
|
version('0.1-2', sha256='622fb61580cc19b9061c6ee28ffd751250a127f07904b45a0e1c5438d25b4f53')
|
|
|
|
depends_on('r@1.9.0:', type=('build', 'run'))
|