diff --git a/s/SQLite/SQLite-3.24.0.eb b/s/SQLite/SQLite-3.24.0.eb new file mode 100644 index 0000000000000000000000000000000000000000..a83d1def2496157606f94300a0924c94c306e6c8 --- /dev/null +++ b/s/SQLite/SQLite-3.24.0.eb @@ -0,0 +1,33 @@ +# IT4Innovations 2018 + +easyblock = 'ConfigureMake' + +name = 'SQLite' +version = '3.24.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/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'), + ('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'