mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 19:50:50 +01:00

new file: a/ASE/ASE-3.15.0-Python-2.7.13-base-test.eb new file: a/ASE/ASE-3.15.0-Python-3.6.4-base-test.eb new file: b/Bash/Bash-4.4-GCC-6.3.0-2.27.eb new file: b/Bash/Bash-4.4-intel-2017b.eb new file: b/Boost/Boost-1.66.0-foss-2018a-Py-2.7.eb new file: f/foss/foss-2018a.eb new file: n/numpy/numpy-1.14.1-Py-3.6.eb new file: n/numpy/numpy-1.14.1-mkl.patch new file: o/OpenMPI/OpenMPI-3.0.0-GCC-6.3.0-2.27.eb new file: s/SQLite/SQLite-3.21.0.eb
34 lines
864 B
Plaintext
34 lines
864 B
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'SQLite'
|
|
version = '3.21.0'
|
|
|
|
homepage = 'http://www.sqlite.org/'
|
|
description = 'SQLite: SQL Database Engine in a C Library'
|
|
|
|
toolchain = {'name': 'dummy', 'version': ''}
|
|
|
|
source_urls = ['http://www.sqlite.org/2017/']
|
|
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'),
|
|
('Tcl', '8.6.6'),
|
|
]
|
|
|
|
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'
|