Skip to content
Snippets Groups Projects

update branch

Merged Eleni Mathioulaki requested to merge master into add-r-workflow
3 files
+ 48
0
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 12
0
 
from spack.package import *
 
 
class RRgsl(RPackage):
 
"""This is an interface package to solve ODE systems using gsl_odeiv2 within R. The system to solve has to be defined using C code: a shared library, dynamically loaded by this package when solving."""
 
 
homepage = "https://github.com/icpm-kth/rgsl"
 
url = "https://github.com/icpm-kth/rgsl/archive/refs/tags/v0.1.tar.gz"
 
version("0.1", sha256="dd6a14dda8731f4cf32149c8a9842e4e2ba424c8404f4d6839108153b20e4c3e")
 
 
# GNU Scientific Library: https://www.gnu.org/software/gsl
 
# spack: https://spack.readthedocs.io/en/latest/package_list.html#gsl
 
depends_on("gsl")