diff options
author | Dr. Christian Tacke <58549698+ChristianTackeGSI@users.noreply.github.com> | 2020-05-04 09:02:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 09:02:38 +0200 |
commit | d5adad6953908a39920fbbe66c543bb008705179 (patch) | |
tree | f6718014e2c6595c352e2a50ba0fcad363bf9f52 | |
parent | 860c54335dab3c766b2f692e77941b7dce28ab8e (diff) | |
download | spack-d5adad6953908a39920fbbe66c543bb008705179.tar.gz spack-d5adad6953908a39920fbbe66c543bb008705179.tar.bz2 spack-d5adad6953908a39920fbbe66c543bb008705179.tar.xz spack-d5adad6953908a39920fbbe66c543bb008705179.zip |
singularity: added missing dependencies (#16430)
See:
https://sylabs.io/guides/3.5/user-guide/quick_start.html#install-system-dependencies
for pkg-config and libseccomp
-rw-r--r-- | var/spack/repos/builtin/packages/singularity/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/singularity/package.py b/var/spack/repos/builtin/packages/singularity/package.py index e7e69fa732..9f4c898e61 100644 --- a/var/spack/repos/builtin/packages/singularity/package.py +++ b/var/spack/repos/builtin/packages/singularity/package.py @@ -40,9 +40,12 @@ class Singularity(MakefilePackage): variant('suid', default=True, description='install SUID binary') variant('network', default=True, description='install network plugins') + + depends_on('pkgconfig', type='build') depends_on('go') depends_on('libuuid') depends_on('libgpg-error') + depends_on('libseccomp') depends_on('squashfs', type='run') depends_on('git', when='@develop') # mconfig uses it for version info depends_on('shadow', type='run', when='@3.3:') |