45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Erne(AutotoolsPackage):
|
|
"""The Extended Randomized Numerical alignEr using BWT"""
|
|
|
|
homepage = "https://erne.sourceforge.net/"
|
|
url = "https://downloads.sourceforge.net/project/erne/2.1.1/erne-2.1.1-source.tar.gz"
|
|
|
|
license("GPL-3.0-only")
|
|
|
|
version("2.1.1", sha256="f32ab48481fd6c129b0a0246ab02b6e3a2a9da84024e1349510a59c15425d983")
|
|
|
|
depends_on("c", type="build") # generated
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
variant("mpi", default=False, description="Build with OpenMPI support")
|
|
|
|
depends_on(
|
|
"boost@1.40.0:"
|
|
"+exception+filesystem+system+chrono+serialization+random"
|
|
"+atomic+iostreams+regex+thread+container",
|
|
type=("build", "link", "run"),
|
|
)
|
|
depends_on("openmpi", type=("build", "run"), when="+mpi")
|
|
|
|
def configure_args(self):
|
|
if self.spec.satisfies("+mpi"):
|
|
return ["--enable-openmpi"]
|
|
else:
|
|
return ["--disable-openmpi"]
|
|
|
|
def build(self, spec, prefix):
|
|
# override the AUTOCONF environment to prevent double configure
|
|
# this catches any invocations and ignores them
|
|
make("AUTOCONF=:")
|
|
|
|
def install(self, spec, prefix):
|
|
# same catch with installing
|
|
make("install", "AUTOCONF=:")
|