summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rjava/package.py
blob: fc8c3850aa3f05080a42830f9a527bd5749f536e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RRjava(RPackage):
    """Low-level interface to Java VM very much like .C/.Call and friends.
    Allows creation of objects, calling methods and accessing fields."""

    homepage = "http://www.rforge.net/rJava/"
    url      = "https://cran.r-project.org/src/contrib/rJava_0.9-8.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/rJava"

    version('0.9-8', '51ae0d690ceed056ebe7c4be71fc6c7a')

    depends_on('java')