libgeotiff-1.5.1-GCCcore-8.2.0.eb 941 B

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'ConfigureMake'
  2. name = 'libgeotiff'
  3. version = '1.5.1'
  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. checksums = ['f9e99733c170d11052f562bcd2c7cb4de53ed405f7acdde4f16195cd3ead612c']
  10. builddependencies = [
  11. ('binutils', '2.31.1'),
  12. ]
  13. dependencies = [
  14. ('zlib', '1.2.11'),
  15. ('LibTIFF', '4.0.10'),
  16. ('PROJ', '6.2.0'),
  17. ('libjpeg-turbo', '2.0.2'),
  18. ]
  19. configopts = ' --with-libtiff=$EBROOTLIBTIFF --with-proj=$EBROOTPROJ --with-zlib=$EBROOTZLIB'
  20. configopts += ' --with-jpeg=$EBROOTLIBJPEGMINTURBO'
  21. sanity_check_paths = {
  22. 'files': ['bin/listgeo', 'lib/libgeotiff.a', 'lib/libgeotiff.%s' % SHLIB_EXT],
  23. 'dirs': ['include', 'share'],
  24. }
  25. moduleclass = 'lib'