lwgrp: add autotools deps when building @main (#42564)

This commit is contained in:
Elsa Gonsiorowski, PhD 2024-02-12 03:40:52 -05:00 committed by GitHub
parent 5d6dec5a5c
commit 10af235895
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,8 @@ class Lwgrp(AutotoolsPackage):
url = "https://github.com/LLNL/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz"
git = "https://github.com/LLNL/lwgrp.git"
maintainers("CamStan", "gonsie", "adammoody")
version("main", branch="main")
version("1.0.5", sha256="16b579e13b8a5218f4fe1b8715f6aafb09133a0cefbcd6b2eaf73802955dee6b")
version("1.0.4", sha256="0c933df7658660a0225f8e3a940eb2621efa4421397859417c8d90d906d4e90a")
@ -22,6 +24,10 @@ class Lwgrp(AutotoolsPackage):
depends_on("mpi")
depends_on("autoconf", type="build", when="@main build_system=autotools")
depends_on("automake", type="build", when="@main build_system=autotools")
depends_on("libtool", type="build", when="@main build_system=autotools")
variant("shared", default=True, description="Build with shared libraries")
def configure_args(self):