cURL-7.60.0-GCCcore-6.4.0.eb 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. easyblock = 'ConfigureMake'
  2. name = 'cURL'
  3. version = '7.60.0'
  4. homepage = 'http://curl.haxx.se'
  5. description = """
  6. libcurl is a free and easy-to-use client-side URL transfer library,
  7. supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP,
  8. LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.
  9. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP
  10. form based upload, proxies, cookies, user+password authentication (Basic,
  11. Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling
  12. and more.
  13. """
  14. toolchain = {'name': 'GCCcore', 'version': '6.4.0'}
  15. source_urls = ['https://curl.haxx.se/download/']
  16. sources = [SOURCELOWER_TAR_GZ]
  17. checksums = ['e9c37986337743f37fd14fe8737f246e97aec94b39d1b71e8a5973f72a9fc4f5']
  18. builddependencies = [
  19. ('binutils', '2.30'),
  20. ]
  21. dependencies = [
  22. ('zlib', '1.2.11'),
  23. # OS dependency should be preferred if the os version is more recent then this version,
  24. # it's nice to have an up to date openssl for security reasons
  25. # ('OpenSSL', '1.1.0h')
  26. ]
  27. osdependencies = [
  28. ('openssl-devel', 'libssl-dev', 'libopenssl-devel'),
  29. ]
  30. configopts = '--with-zlib'
  31. # configopts += '--with-ssl=$EBROOTOPENSSL'
  32. modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
  33. sanity_check_paths = {
  34. 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
  35. 'dirs': ['lib/pkgconfig'],
  36. }
  37. moduleclass = 'tools'