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

new file: a/Automake/Automake-1.16.3-GCCcore-10.3.0-test.eb new file: c/CMake/CMake-3.20.1-GCCcore-10.3.0-test.eb modified: c/COMSOL/COMSOL-5.2.0-EDU.eb new file: c/cURL/cURL-7.76.0-GCCcore-10.3.0-test.eb new file: d/DB/DB-18.1.40-GCCcore-10.3.0-test.eb new file: g/git/git-2.32.0-GCCcore-10.3.0-nodocs-test.eb new file: i/intltool/intltool-0.51.0-GCCcore-10.3.0-test.eb new file: l/libarchive/libarchive-3.5.1-GCCcore-10.3.0-test.eb new file: l/libevent/libevent-2.1.12-GCCcore-10.3.0-test.eb new file: n/netCDF/netCDF-4.8.0-gompi-2021a-test.eb new file: n/netCDF/test new file: o/OpenFOAM/OpenFOAM-9-foss-2021a-test.eb new file: p/Perl/Perl-5.32.1-GCCcore-10.3.0-test.eb new file: p/Python/Python-3.9.5-GCCcore-10.3.0-test.eb new file: r/Rust/Rust-1.52.1-GCCcore-10.3.0-test.eb
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
# #
|
|
# Author: Robert Mijakovic <robert.mijakovic@lxp.lu>
|
|
# #
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'cURL'
|
|
version = '7.76.0'
|
|
versionsuffix = '-test'
|
|
|
|
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': '10.3.0'}
|
|
|
|
source_urls = ['https://%(namelower)s.haxx.se/download/']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['3b4378156ba09e224008e81dcce854b7ce4d182b1f9cfb97fe5ed9e9c18c6bd3']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.36.1'),
|
|
]
|
|
dependencies = [
|
|
('zlib', '1.2.11'),
|
|
('OpenSSL', '1.1.1k'),
|
|
]
|
|
|
|
configopts = '--with-zlib'
|
|
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/%(namelower)s', 'lib/libcurl.a', 'lib/libcurl.so'],
|
|
'dirs': ['lib/pkgconfig', 'include/%(namelower)s'],
|
|
}
|
|
|
|
# configopts += '--with-ssl=$EBROOTOPENSSL'
|
|
|
|
modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
|
|
|
|
moduleclass = 'tools'
|