1234567891011121314151617181920212223242526272829303132333435363738394041 |
- easyblock = 'ConfigureMake'
- name = 'SQLite'
- version = '3.39.4'
- local_filename_version = '3390400'
- homepage = 'https://www.sqlite.org/'
- description = "SQLite: SQL Database Engine in a C Library"
- toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
- toolchainopts = {'pic': True}
- source_urls = ['https://www.sqlite.org/2022/']
- sources = ['%%(namelower)s-autoconf-%s.tar.gz' % (local_filename_version)]
- checksums = ['f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb']
- osdependencies = ['libreadline']
- builddependencies = [
- ('binutils', '2.39'),
- ]
- dependencies = [
- #('libreadline', '8.2'),
- ('Tcl', '8.6.12'),
- ]
- # enable additional APIs that provide access to meta-data about tables and queries
- # needed for GDAL when it used as a dep for QGIS
- buildopts = 'CC="$CC" CFLAGS="$CFLAGS -DSQLITE_ENABLE_COLUMN_METADATA"'
- sanity_check_paths = {
- 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h',
- 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
- }
- sanity_check_commands = [
- 'sqlite3 --version | grep ^%(version)s',
- ]
- moduleclass = 'devel'
|