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

new file: a/Autotools/Autotools-20231222-GCCcore-14.2.0.eb new file: b/bzip2/bzip2-1.0.8-GCCcore-14.2.0.eb new file: c/CMake/CMake-3.30.5-GCCcore-14.2.0.eb new file: c/cURL/cURL-8.7.1-GCCcore-14.2.0.eb new file: h/hwloc/hwloc-2.10.0-GCCcore-14.2.0.eb new file: l/libarchive/libarchive-3.7.4-GCCcore-14.2.0.eb new file: n/NVHPC/NVHPC-24.3.eb new file: n/ncurses/ncurses-6.5-GCCcore-14.2.0.eb new file: n/numactl/numactl-2.0.18-GCCcore-13.3.0.eb new file: o/OpenMPI/OpenMPI-4.1.6-NVHPC-24.3.eb new file: o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb new file: p/Perl/Perl-5.38.2-GCCcore-14.2.0.eb new file: p/pkgconf/pkgconf-2.2.0-GCCcore-14.2.0.eb new file: u/UCC/UCC-1.2.0-GCCcore-13.2.0.eb modified: u/UCX/UCX-1.15.0-GCCcore-13.2.0.eb new file: x/XZ/XZ-5.4.5-GCCcore-14.2.0.eb
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'cURL'
|
|
version = '8.7.1'
|
|
|
|
homepage = 'https://curl.haxx.se'
|
|
|
|
description = """
|
|
libcurl is a free and easy-to-use client-side URL transfer library,
|
|
supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP,
|
|
LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.
|
|
libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP
|
|
form based upload, proxies, cookies, user+password authentication (Basic,
|
|
Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling
|
|
and more.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
|
|
|
|
source_urls = ['https://curl.haxx.se/download/']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['f91249c87f68ea00cf27c44fdfa5a78423e41e71b7d408e5901a9896d905c495']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.42'),
|
|
]
|
|
|
|
dependencies = [
|
|
('zlib', '1.3.1'),
|
|
# ('OpenSSL', '3', '', SYSTEM),
|
|
]
|
|
|
|
configopts = '--with-zlib '
|
|
configopts += '--with-ssl=$EBROOTOPENSSL '
|
|
|
|
modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
|
|
'dirs': ['lib/pkgconfig', 'include/curl'],
|
|
}
|
|
|
|
moduleclass = 'tools'
|