easyconfigs-it4i/archive/w/wget/wget-1.17.1-foss-2016a.eb
2019-09-23 07:19:27 +02:00

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'