lwgrp: add autotools deps when building @main (#42564)
This commit is contained in:
parent
5d6dec5a5c
commit
10af235895
1 changed files with 6 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue