
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
26 lines
747 B
Python
26 lines
747 B
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 Ray(CMakePackage, SourceforgePackage):
|
|
"""Parallel genome assemblies for parallel DNA sequencing"""
|
|
|
|
homepage = "http://denovoassembler.sourceforge.net/"
|
|
sourceforge_mirror_path = "denovoassembler/Ray-2.3.1.tar.bz2"
|
|
|
|
version('2.3.1', sha256='3122edcdf97272af3014f959eab9a0f0e5a02c8ffc897d842b06b06ccd748036')
|
|
|
|
depends_on('mpi')
|
|
|
|
@run_after('build')
|
|
def make(self):
|
|
mkdirp(prefix.bin)
|
|
make('PREFIX=%s' % prefix.bin)
|
|
|
|
def install(self, spec, prefix):
|
|
make('install')
|