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

new file: c/ChronusQ/ChronusQ-20180802-intel-2017c.eb new file: c/cURL/cURL-7.61.1-GCC-6.3.0-2.27.eb new file: d/Doxygen/Doxygen-1.8.14-GCC-6.3.0-2.27.eb new file: e/Eigen/Eigen-3.3.5-GCC-6.3.0-2.27.eb new file: e/expat/expat-2.2.6-GCC-6.3.0-2.27.eb new file: g/GDAL/GDAL-2.3.2-Py-2.7.eb new file: g/GEOS/GEOS-3.7.0-GCC-6.3.0-2.27-Py-2.7.eb new file: g/Go/Go-1.11.1.eb new file: j/JasPer/JasPer-2.0.14-GCC-6.3.0-2.27.eb new file: j/Julia/Julia-1.0.1-intel-2017c-Py-2.7.eb new file: l/LibTIFF/LibTIFF-4.0.7-GCC-6.3.0-2.27.eb new file: l/libjpeg-turbo/libjpeg-turbo-2.0.0-GCC-6.3.0-2.27.eb new file: l/libxml2/libxml2-2.9.8-GCC-6.3.0-2.27.eb new file: n/netCDF/netCDF-4.6.1-GCC-6.3.0-2.27.eb new file: p/PCRE/PCRE-8.42-GCC-6.3.0-2.27.eb new file: s/SQLite/SQLite-3.25.2-GCC-6.3.0-2.27.eb new file: s/SWIG/SWIG-3.0.12-GCC-6.3.0-2.27-Py-2.7.eb new file: s/Szip/Szip-2.1.1-GCC-6.3.0-2.27.eb
40 lines
971 B
Plaintext
40 lines
971 B
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'SQLite'
|
|
version = '3.25.2'
|
|
|
|
homepage = 'http://www.sqlite.org/'
|
|
description = 'SQLite: SQL Database Engine in a C Library'
|
|
|
|
toolchain = {'name': 'GCC', 'version': '6.3.0-2.27'}
|
|
|
|
source_urls = ['http://www.sqlite.org/2018/']
|
|
version_minor_etc = version.split('.')[1:]
|
|
version_minor_etc += '0' * (3 - len(version_minor_etc))
|
|
version_str = '%(version_major)s' + ''.join('%02d' % int(x)
|
|
for x in version_minor_etc)
|
|
sources = [
|
|
'sqlite-autoconf-%s.tar.gz' % version_str,
|
|
'sqlite-amalgamation-%s.zip' % version_str,
|
|
]
|
|
|
|
dependencies = [
|
|
('libreadline', '7.0', '', True),
|
|
('Tcl', '8.6.6', '', True),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/sqlite3',
|
|
'include/sqlite3ext.h',
|
|
'include/sqlite3.h',
|
|
'lib/libsqlite3.a',
|
|
'lib/libsqlite3.%s' %
|
|
SHLIB_EXT],
|
|
'dirs': ['lib/pkgconfig'],
|
|
}
|
|
|
|
moduleclass = 'devel'
|