SQLite-3.39.4-GCCcore-12.2.0.eb 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. easyblock = 'ConfigureMake'
  2. name = 'SQLite'
  3. version = '3.39.4'
  4. local_filename_version = '3390400'
  5. homepage = 'https://www.sqlite.org/'
  6. description = "SQLite: SQL Database Engine in a C Library"
  7. toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
  8. toolchainopts = {'pic': True}
  9. source_urls = ['https://www.sqlite.org/2022/']
  10. sources = ['%%(namelower)s-autoconf-%s.tar.gz' % (local_filename_version)]
  11. checksums = ['f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb']
  12. osdependencies = ['libreadline']
  13. builddependencies = [
  14. ('binutils', '2.39'),
  15. ]
  16. dependencies = [
  17. #('libreadline', '8.2'),
  18. ('Tcl', '8.6.12'),
  19. ]
  20. # enable additional APIs that provide access to meta-data about tables and queries
  21. # needed for GDAL when it used as a dep for QGIS
  22. buildopts = 'CC="$CC" CFLAGS="$CFLAGS -DSQLITE_ENABLE_COLUMN_METADATA"'
  23. sanity_check_paths = {
  24. 'files': ['bin/sqlite3', 'include/sqlite3ext.h', 'include/sqlite3.h',
  25. 'lib/libsqlite3.a', 'lib/libsqlite3.%s' % SHLIB_EXT],
  26. 'dirs': ['lib/pkgconfig'],
  27. }
  28. sanity_check_commands = [
  29. 'sqlite3 --version | grep ^%(version)s',
  30. ]
  31. moduleclass = 'devel'