blob: 7662f47252eb9718e8ac1903a4ec01d33c065a80 (
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-2021 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 RTweenr(RPackage):
"""tweenr: Interpolate Data for Smooth Animations"""
homepage = "https://github.com/thomasp85/tweenr"
url = "https://cloud.r-project.org/src/contrib/tweenr_1.0.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/tweenr"
version('1.0.1', sha256='efd68162cd6d5a4f6d833dbf785a2bbce1cb7b9f90ba3fb060931a4bd705096b')
depends_on('r@3.2.0:', type=('build', 'run'))
depends_on('r-farver', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-rcpp@0.12.3:', type=('build', 'run'))
depends_on('r-rlang', type=('build', 'run'))
|