libgeotiff-1.4.2-foss-2018b.eb 956 B

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'ConfigureMake'
  2. name = 'libgeotiff'
  3. version = '1.4.2'
  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': 'foss', 'version': '2018b'}
  7. source_urls = [
  8. 'http://download.osgeo.org/geotiff/libgeotiff/',
  9. 'ftp://ftp.remotesensing.org/pub/libgeotiff/',
  10. ]
  11. sources = ['%(name)s-%(version)s.tar.gz']
  12. checksums = ['ad87048adb91167b07f34974a8e53e4ec356494c29f1748de95252e8f81a5e6e']
  13. dependencies = [
  14. ('zlib', '1.2.11'),
  15. ('LibTIFF', '4.0.9'),
  16. ('PROJ', '5.1.0'),
  17. ('libjpeg-turbo', '1.5.3'),
  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'