
* Add new RubyPackage build system base class * Ruby: add spack external find support * Add build tests for RubyPackage
18 lines
702 B
Python
18 lines
702 B
Python
# Copyright 2013-2020 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)
|
|
|
|
|
|
class RubyNarray(RubyPackage):
|
|
"""Numo::NArray is an Numerical N-dimensional Array class for fast
|
|
processing and easy manipulation of multi-dimensional numerical data,
|
|
similar to numpy.ndaray."""
|
|
|
|
homepage = "https://masa16.github.io/narray/"
|
|
url = "https://github.com/ruby-numo/numo-narray/archive/v0.9.1.8.tar.gz"
|
|
|
|
version('0.9.1.8', sha256='48814c6ebf2c4846fcf6cfd2705a15a97a608960c1676cb6c7b5c9254b0dd51b')
|
|
|
|
depends_on('ruby@2.2:2.999', type=('build', 'run'))
|