libgeotiff-1.4.3-GCCcore-8.2.0.eb 860 B

123456789101112131415161718192021222324252627282930313233
  1. easyblock = 'ConfigureMake'
  2. name = 'libgeotiff'
  3. version = '1.4.3'
  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': '8.2.0'}
  7. source_urls = ['http://download.osgeo.org/geotiff/libgeotiff']
  8. sources = [SOURCE_TAR_GZ]
  9. builddependencies = [
  10. ('binutils', '2.31.1'),
  11. ]
  12. dependencies = [
  13. ('zlib', '1.2.11'),
  14. ('LibTIFF', '4.0.10'),
  15. ('PROJ', '5.2.0'),
  16. ('libjpeg-turbo', '2.0.2'),
  17. ]
  18. configopts = ' --with-libtiff=$EBROOTLIBTIFF --with-proj=$EBROOTPROJ --with-zlib=$EBROOTZLIB'
  19. configopts += ' --with-jpeg=$EBROOTLIBJPEGMINTURBO'
  20. sanity_check_paths = {
  21. 'files': ['bin/listgeo', 'lib/libgeotiff.a', 'lib/libgeotiff.%s' % SHLIB_EXT],
  22. 'dirs': ['include', 'share'],
  23. }
  24. moduleclass = 'lib'