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

new file: a/awscli/awscli-1.27.75-GCCcore-12.2.0-Python-3.10.8.eb new file: i/iompi/iompi-2020b-test.eb modified: l/libnsl/libnsl-1.3.0-GCCcore-10.3.0.eb new file: l/libnsl/libnsl-2.0.0-GCCcore-11.3.0.eb new file: o/OSU-Micro-Benchmarks/OSU-Micro-Benchmarks-5.7.1-iompi-2020b.eb new file: o/OpenMPI/OpenMPI-4.0.5-iccifort-2020.4.304-test.eb new file: p/PyYAML/PyYAML-5.4.1.1-GCCcore-12.2.0.eb new file: r/rclone/rclone-1.61.1.eb new file: s/s3cmd/s3cmd-2.3.0-GCCcore-12.2.0-Python-3.10.8.eb new file: v/VirtualGL/VirtualGL-3.0-GCC-11.3.0.eb modified: x/XALT/XALT-2.10.45-eb.eb
37 lines
975 B
Plaintext
37 lines
975 B
Plaintext
# IT4Innovations 2023
|
|
# JK
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libnsl'
|
|
version = '2.0.0'
|
|
|
|
homepage = 'https://github.com/thkukuk/libnsl'
|
|
description = """The libnsl package contains the public client interface for NIS(YP)."""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
|
|
|
|
source_urls = ['https://github.com/thkukuk/%(name)s/releases/download/v%(version)s/']
|
|
sources = [SOURCE_TAR_XZ]
|
|
checksums = ['2da075ef1893ebdfc5f074f83ac811873dc06fd5c62bc9a4729fd2e27a40341a']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.38'),
|
|
]
|
|
|
|
dependencies = [
|
|
('libtirpc', '1.3.2'),
|
|
]
|
|
|
|
# Provide a symlink for libnsl.so.1, which used to be part of glibc.
|
|
# This new version of libnsl should be backwards compatible.
|
|
postinstallcmds = ['ln -s libnsl.so %(installdir)s/lib/libnsl.so.1']
|
|
|
|
sanity_check_paths = {
|
|
'files': ['include/rpcsvc/yp.h', 'lib/libnsl.a',
|
|
'lib/libnsl.%s' % SHLIB_EXT, 'lib/libnsl.%s.1' % SHLIB_EXT],
|
|
'dirs': ['include']
|
|
}
|
|
|
|
moduleclass = 'devel'
|