mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 02:41:22 +01:00

deleted: a/Anaconda2/Anaconda2-4.4.0.eb deleted: a/Anaconda3/Anaconda3-2019.10.eb deleted: a/Anaconda3/Anaconda3-4.4.0.eb deleted: a/Anaconda3/Anaconda3-5.3.1.eb deleted: a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb deleted: a/Autotools/Autotools-20170619.eb deleted: a/Autotools/Autotools-20180311.eb
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'wget'
|
|
version = '1.17.1'
|
|
|
|
homepage = 'https://www.gnu.org/software/wget/'
|
|
description = """GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP,
|
|
the most widely-used Internet protocols. It is a non-interactive commandline tool,
|
|
so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2016a'}
|
|
|
|
source_urls = [GNU_SOURCE]
|
|
sources = [SOURCE_TAR_XZ]
|
|
|
|
dependencies = [
|
|
#('gnutls', '3.4.11'), # OS dependency should be preferred if the os version is more recent then this version, it's
|
|
# nice to have an up to date gnutls for security reasons
|
|
('PCRE', '8.38'),
|
|
('libidn', '1.32'),
|
|
('zlib', '1.2.8'),
|
|
#('OpenSSL', '1.0.1s'), # OS dependency should be preferred if the os version is more recent then this version, it's
|
|
# nice to have an up to date openssl for security reasons
|
|
]
|
|
|
|
configopts = '--with-ssl=openssl '
|
|
|
|
osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
|
|
# Optionally, you can use gnutls (default) instead of OpenSSL.
|
|
# Do not forget to comment out configopts in that case.
|
|
#osdependencies = [('gnutls-devel', 'gnutls-dev', 'libgnutls-devel')]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/wget'],
|
|
'dirs': []
|
|
}
|
|
|
|
moduleclass = 'devel'
|