From 1bf5f91e2ee4aa8786972a13390dfb1ef9cc23e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Mon, 18 Jun 2018 06:45:06 +0200 Subject: [PATCH] new file: s/SQLite/SQLite-3.24.0.eb Former-commit-id: 265e82c4fc7dad44458328fd2da85fca213132ee --- s/SQLite/SQLite-3.24.0.eb | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 s/SQLite/SQLite-3.24.0.eb diff --git a/s/SQLite/SQLite-3.24.0.eb b/s/SQLite/SQLite-3.24.0.eb new file mode 100644 index 00000000..a83d1def --- /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'