31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# 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 RV8(RPackage):
|
|
"""V8: Embedded JavaScript and WebAssembly Engine for R"""
|
|
|
|
homepage = "https://github.com/jeroen/v8"
|
|
cran = "V8"
|
|
|
|
version('3.6.0', sha256='a3969898bf4a7c13d3130fae0d385cd048d46372ff4a412917b914b159261377')
|
|
version('3.4.0', sha256='f5c8a2a03cc1be9f504f47711a0fcd1b962745139c9fb2a10fbd79c4ae103fbd',
|
|
deprecated=True)
|
|
|
|
depends_on('r-rcpp@0.12.12:', type=('build', 'run'))
|
|
depends_on('r-jsonlite@1.0:', type=('build', 'run'))
|
|
depends_on('r-curl@1.0:', type=('build', 'run'))
|
|
|
|
conflicts('@3.4.0', when='target=aarch64:')
|
|
conflicts('@3.4.0', when='%gcc@5:')
|
|
|
|
def setup_build_environment(self, env):
|
|
spec = self.spec
|
|
if ((spec.platform == 'darwin') or
|
|
(spec.platform == 'linux' and spec.target.family == 'x86_64')):
|
|
env.append_flags('DOWNLOAD_STATIC_LIBV8', '1')
|