mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: c/cURL/cURL-7.76.0.eb new file: e/expat/expat-2.2.9.eb new file: f/fontconfig/fontconfig-2.13.93.eb new file: f/freetype/freetype-2.10.4.eb modified: g/gnuplot/gnuplot-5.2.3.eb modified: g/gnuplot/gnuplot-5.2.8.eb new file: h/HDF5/HDF5-1.10.6-foss-2020b-parallel.eb new file: h/HDF5/HDF5-1.10.6-intel-2020b-parallel.eb new file: i/iomkl/iomkl-2020b.eb new file: l/libarchive/libarchive-3.5.1.eb new file: l/libgd/libgd-2.3.1.eb new file: l/libjpeg-turbo/libjpeg-turbo-2.0.6.eb modified: l/libsndfile/libsndfile-1.0.28.eb modified: m/mkl/mkl-2020.0.166.eb new file: m/mkl/mkl-2020.4.304.eb new file: n/NASM/NASM-2.15.05.eb new file: o/Octave/Octave-6.3.0-intel-2020b-without-X11.eb new file: p/ParMETIS/ParMETIS-4.0.3-foss-2020b.eb new file: p/ParMETIS/ParMETIS-4.0.3-intel-2020b.eb new file: u/util-linux/util-linux-2.36.eb modified: v/VASP/VASP-6.2.1-intel-2020b-mkl=sequential-karolina.eb new file: v/VirtualGL/VirtualGL-2.6.5-GCC-10.3.0.eb new file: x/XZ/XZ-5.2.5.eb
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
# IT4Innovations
|
|
# LK 2021
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'util-linux'
|
|
version = '2.36'
|
|
|
|
homepage = 'https://www.kernel.org/pub/linux/utils/util-linux'
|
|
|
|
description = "Set of Linux utilities"
|
|
|
|
toolchain = SYSTEM
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['%s/v%%(version_major_minor)s' % homepage]
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['82942cd877a989f6d12d4ce2c757fb67ec53d8c5cd9af0537141ec5f84a2eea3']
|
|
|
|
# disable account related utilities (they need OS dependent pam-devel files)
|
|
# disable wall and friends (requires group changing permissions for install user)
|
|
# install systemd service files in install dir
|
|
# install bash completion files in install dir
|
|
configopts = "--disable-chfn-chsh --disable-login --disable-su --disable-rfkill "
|
|
configopts += "--disable-wall --disable-use-tty-group "
|
|
configopts += "--disable-makeinstall-chown --disable-makeinstall-setuid "
|
|
configopts += "--with-systemdsystemunitdir='${prefix}/systemd' "
|
|
configopts += "--with-bashcompletiondir='${prefix}/share/bash-completion/completions' "
|
|
# disable building Python bindings (since we don't include Python as a dep)
|
|
configopts += "--without-python "
|
|
|
|
dependencies = [
|
|
('ncurses', '6.2'),
|
|
('zlib', '1.2.11'),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/lib%s.a' % x for x in ['blkid', 'mount', 'uuid']],
|
|
'dirs': ['include', 'bin', 'share', 'sbin'],
|
|
}
|
|
|
|
moduleclass = 'tools'
|