exactextract-0.1-foss-2018b.eb 925 B

12345678910111213141516171819202122232425262728293031
  1. easyblock = 'CMakeMake'
  2. name = 'exactextract'
  3. version = '0.1'
  4. homepage = 'https://github.com/isciences/exactextract'
  5. description = """exactextract provides a fast and accurate algorithm for summarizing values in the portion of a raster dataset that is covered by a polygon, often referred to as zonal statistics. Unlike other zonal statistics implementations, it takes into account raster cells that are partially covered by the polygon."""
  6. toolchain = {'name': 'foss', 'version': '2018b'}
  7. source_urls = ['https://github.com/isciences/exactextract/archive/']
  8. sources = ['master.zip']
  9. builddependencies = [('CMake', '3.11.4')]
  10. dependencies = [
  11. ('GEOS', '3.6.2', '-Python-2.7.15'),
  12. ('GDAL', '2.2.3', '-Python-2.7.15'),
  13. ]
  14. separate_build_dir = True
  15. configopts = '-DCMAKE_BUILD_TYPE=Release'
  16. #CMAKE_INSTALL_PREFIX
  17. sanity_check_paths = {
  18. 'files': ['bin/exactextract'],
  19. 'dirs': [],
  20. }
  21. moduleclass = 'tools'