Added ARM/aarch64 conflict to Eddy/Rivas lab tools (#34190)

This commit is contained in:
Luke Diorio-Toth 2022-12-12 06:26:57 -06:00 committed by GitHub
parent c1d11975f5
commit 88f2f59d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,9 @@ class Hmmer(Package):
depends_on("mpi", when="+mpi")
depends_on("gsl", when="+gsl")
# https://github.com/EddyRivasLab/hmmer/issues/283
conflicts("target=aarch64:", msg="hmmer is only available for x86_64 and PowerPC")
def install(self, spec, prefix):
configure_args = ["--prefix={0}".format(prefix)]

View File

@ -23,6 +23,9 @@ class Infernal(AutotoolsPackage):
depends_on("mpi", when="+mpi")
# https://github.com/EddyRivasLab/infernal/issues/30
conflicts("target=aarch64:", msg="infernal is only available for x86_64 and PowerPC")
def configure_args(self):
args = []
if "+mpi" in self.spec: