libgeotiff-1.6.0-GCCcore-11.2.0.eb 988 B

123456789101112131415161718192021222324252627282930313233343536
  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': '11.2.0'}
  7. source_urls = ['https://download.osgeo.org/geotiff/libgeotiff']
  8. sources = [SOURCE_TAR_GZ]
  9. checksums = ['9311017e5284cffb86f2c7b7a9df1fb5ebcdc61c30468fb2e6bca36e4272ebca']
  10. builddependencies = [
  11. ('binutils', '2.37'),
  12. ]
  13. dependencies = [
  14. ('PROJ', '7.2.1'),
  15. ('libjpeg-turbo', '2.0.6'),
  16. ('zlib', '1.2.11'),
  17. ('SQLite', '3.36'),
  18. ('LibTIFF', '4.3.0'),
  19. ('cURL', '7.78.0'),
  20. ]
  21. configopts = ' --with-libtiff=$EBROOTLIBTIFF --with-proj=$EBROOTPROJ --with-zlib=$EBROOTZLIB'
  22. configopts += ' --with-jpeg=$EBROOTLIBJPEGMINTURBO'
  23. sanity_check_paths = {
  24. 'files': ['bin/listgeo', 'lib/libgeotiff.a', 'lib/libgeotiff.%s' % SHLIB_EXT],
  25. 'dirs': ['include', 'share'],
  26. }
  27. moduleclass = 'lib'