summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-clipr/package.py
blob: c87ffa1f3c6241d387f5ea4636dc282a7bc1e7e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2018 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 RClipr(RPackage):
    """Simple utility functions to read from and write to the Windows, OS X,
       and X11 clipboards."""

    homepage = "https://github.com/mdlincoln/clipr"
    url      = "https://cran.r-project.org/src/contrib/clipr_0.4.0.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/clipr"

    version('0.4.0', '4012a31eb3b7a36bd3bac00f916e56a7')

    depends_on('r-rstudioapi', type=('build', 'run'))
    depends_on('r-testthat', type=('build', 'run'))
    depends_on('xclip')