diff options
-rw-r--r-- | var/spack/repos/builtin/packages/r-rmutil/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-rmutil/package.py b/var/spack/repos/builtin/packages/r-rmutil/package.py new file mode 100644 index 0000000000..58bb7c4154 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-rmutil/package.py @@ -0,0 +1,19 @@ +# 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 RRmutil(RPackage): + """rmutil: Utilities for Nonlinear Regression and Repeated + MeasurementsModels""" + + homepage = "http://www.commanster.eu/rcode.html" + url = "https://cloud.r-project.org/src/contrib/rmutil_1.1.3.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/rmutil" + + version('1.1.3', sha256='7abaf41e99d1c4a0e4082c4594964ac1421c53b4268116c82fa55aa8bc0582da') + + depends_on('r@1.4:', type=('build', 'run')) |