mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 10:51:21 +01:00
new file: s/SQLite/SQLite-3.24.0.eb
Former-commit-id: 265e82c4fc7dad44458328fd2da85fca213132ee
This commit is contained in:
parent
bba934f4bb
commit
1bf5f91e2e
33
s/SQLite/SQLite-3.24.0.eb
Normal file
33
s/SQLite/SQLite-3.24.0.eb
Normal file
@ -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'
|
Loading…
x
Reference in New Issue
Block a user