# IT4Innovations 2019 # Dokončeno ručně, nejde bez ROOTa !!! easyblock = 'ConfigureMake' name = 'Singularity' version = '3.5.2' homepage = 'https://github.com/sylabs/singularity' description = "Singularity is an open source container platform designed to be simple, fast, and secure. Singularity is optimized for EPC and HPC workloads, allowing untrusted users to run untrusted containers in a trusted way." toolchain = SYSTEM source_urls = ['https://github.com/sylabs/singularity/releases/download/v%s/' % version] sources = ['singularity-%(version)s.tar.gz'] builddependencies = [ ('Go', '1.13.5'), ] dependencies = [ ('squashfs-tools', '4.3'), ] osdependencies = [ ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), ] skipsteps = ['configure'] prebuildopts = './mconfig --prefix=%(installdir)s && ' buildopts = '-C ./builddir' postinstallcmds = [ 'echo "mksquashfs path = /apps/all/squashfs-tools/4.3/bin" >> %(installdir)s/etc/singularity/singularity.conf', ] sanity_check_paths = { 'files': ['bin/singularity'], 'dirs': ['bin', 'etc', 'libexec', 'var'], } moduleclass = 'tools'