SingularityCE: Add conmon+squashfs as dependencies (#33891)
This commit is contained in:
parent
b2ceb23165
commit
46a0cd8e55
1 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,8 @@ class SingularityBase(MakefilePackage):
|
|||
variant("network", default=True, description="install network plugins")
|
||||
|
||||
depends_on("pkgconfig", type="build")
|
||||
depends_on("conmon", type=("build", "run"))
|
||||
depends_on("squashfs", type=("build", "run"))
|
||||
depends_on("go@1.16:")
|
||||
depends_on("uuid")
|
||||
depends_on("libgpg-error")
|
||||
|
@ -72,6 +74,8 @@ def build_directory(self):
|
|||
def edit(self, spec, prefix):
|
||||
with working_dir(self.build_directory):
|
||||
confstring = "./mconfig --prefix=%s" % prefix
|
||||
# Using conmon from spack
|
||||
confstring += " --without-conmon"
|
||||
if "~suid" in spec:
|
||||
confstring += " --without-suid"
|
||||
if "~network" in spec:
|
||||
|
|
Loading…
Reference in a new issue