|
@@ -0,0 +1,31 @@
|
|
|
|
+easyblock = 'ConfigureMake'
|
|
|
|
+
|
|
|
|
+name = 'cURL'
|
|
|
|
+version = '7.49.1'
|
|
|
|
+
|
|
|
|
+homepage = 'http://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': 'intel', 'version': '2016.02-GCC-4.9'}
|
|
|
|
+
|
|
|
|
+sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
+source_urls = ['http://curl.haxx.se/download/']
|
|
|
|
+
|
|
|
|
+osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
|
|
|
|
+
|
|
|
|
+# dependencies = [('OpenSSL', '1.0.1t')]
|
|
|
|
+# 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'],
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+moduleclass = 'tools'
|