libgeotiff-1.6.0-GCCcore-10.2.0.eb 909 B

1234567891011121314151617181920212223242526272829303132333435
  1. easyblock = 'ConfigureMake'
  2. name = 'libgeotiff'
  3. version = '1.6.0'
  4. homepage = 'https://directory.fsf.org/wiki/Libgeotiff'
  5. description = """Library for reading and writing coordinate system information from/to GeoTIFF files"""
  6. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  7. source_urls = ['https://download.osgeo.org/geotiff/libgeotiff']
  8. sources = [SOURCE_TAR_GZ]
  9. builddependencies = [
  10. ('binutils', '2.35'),
  11. ]
  12. dependencies = [
  13. ('PROJ', '7.2.0'),
  14. ('libjpeg-turbo', '2.0.5'),
  15. ('zlib', '1.2.11'),
  16. ('SQLite', '3.33.0'),
  17. ('LibTIFF', '4.1.0'),
  18. ('cURL', '7.72.0'),
  19. ]
  20. configopts = ' --with-libtiff=$EBROOTLIBTIFF --with-proj=$EBROOTPROJ --with-zlib=$EBROOTZLIB'
  21. configopts += ' --with-jpeg=$EBROOTLIBJPEGMINTURBO'
  22. sanity_check_paths = {
  23. 'files': ['bin/listgeo', 'lib/libgeotiff.a', 'lib/libgeotiff.%s' % SHLIB_EXT],
  24. 'dirs': ['include', 'share'],
  25. }
  26. moduleclass = 'lib'