
- [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
34 lines
1.2 KiB
Python
34 lines
1.2 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 Meraculous(CMakePackage, SourceforgePackage):
|
|
"""Meraculous is a while genome assembler for Next Generation Sequencing
|
|
data geared for large genomes."""
|
|
|
|
homepage = "http://jgi.doe.gov/data-and-tools/meraculous/"
|
|
sourceforge_mirror_path = "meraculous20/Meraculous-v2.2.4.tar.gz"
|
|
git = "https://bitbucket.org/berkeleylab/genomics-meraculous2.git"
|
|
|
|
version('2.2.5.1', branch='release-2.2.5.1')
|
|
version('2.2.4', sha256='3b4b8848232be902af9ebc77b38b83bcc531f12120115be089bdd6371ad2bf5b')
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
|
depends_on('boost@1.5.0:')
|
|
depends_on('gnuplot@3.7:')
|
|
depends_on('perl-log-log4perl', type=('build', 'run'))
|
|
|
|
conflicts('%gcc@6.0.0:', when='@2.2.4')
|
|
|
|
def patch(self):
|
|
edit = FileFilter('CMakeLists.txt')
|
|
edit.filter(r"-static-libstdc\+\+", "")
|
|
|
|
def setup_run_environment(self, env):
|
|
env.set('MERACULOUS_ROOT', self.prefix)
|
|
env.prepend_path('PERL5LIB', self.prefix.lib)
|