
some of these are not resolvable in that there is only an http page available, or a page reported as broken is actually ok, or a page has an SSL error that does not prevent one from visiting (and no good replacement) Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
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 Mira(AutotoolsPackage):
|
|
"""MIRA is a multi-pass DNA sequence data assembler/mapper for whole genome
|
|
and EST/RNASeq projects."""
|
|
|
|
homepage = "https://sourceforge.net/projects/mira-assembler/"
|
|
url = "https://downloads.sourceforge.net/project/mira-assembler/MIRA/stable/mira-4.0.2.tar.bz2"
|
|
|
|
version('4.0.2', sha256='a32cb2b21e0968a5536446287c895fe9e03d11d78957554e355c1080b7b92a80')
|
|
|
|
depends_on('boost@1.46:')
|
|
depends_on('expat@2.0.1:')
|
|
depends_on('gperftools')
|
|
|
|
conflicts('%gcc@6:', when='@:4.0.2')
|
|
|
|
def patch(self):
|
|
with working_dir(join_path('src', 'progs')):
|
|
edit = FileFilter('quirks.C')
|
|
edit.filter('#include <boost/filesystem.hpp>',
|
|
'#include <boost/filesystem.hpp>\n#include <iostream>')
|
|
|
|
def configure_args(self):
|
|
args = ['--with-boost=%s' % self.spec['boost'].prefix,
|
|
'--with-expat=%s' % self.spec['expat'].prefix]
|
|
return args
|