PROJ-7.2.1-GCCcore-11.2.0.eb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ##
  2. # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
  3. #
  4. # Copyright:: Copyright 2014-2015 The Cyprus Institute
  5. # Authors:: Thekla Loizou <t.loizou@cyi.ac.cy>
  6. # License:: MIT/GPL
  7. #
  8. ##
  9. easyblock = 'ConfigureMake'
  10. name = 'PROJ'
  11. version = '7.2.1'
  12. homepage = 'https://proj.org'
  13. description = """Program proj is a standard Unix filter function which converts
  14. geographic longitude and latitude coordinates into cartesian coordinates"""
  15. toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
  16. toolchainopts = {'pic': True}
  17. source_urls = ['https://download.osgeo.org/proj/']
  18. sources = [SOURCELOWER_TAR_GZ]
  19. checksums = ['b384f42e5fb9c6d01fe5fa4d31da2e91329668863a684f97be5d4760dbbf0a14']
  20. builddependencies = [
  21. ('pkg-config', '0.29.2'),
  22. ('binutils', '2.37'),
  23. ]
  24. dependencies = [
  25. ('SQLite', '3.36'),
  26. ('LibTIFF', '4.3.0'),
  27. ('cURL', '7.78.0'),
  28. ]
  29. sanity_check_paths = {
  30. 'files': ['bin/cct', 'bin/cs2cs', 'bin/geod', 'bin/gie', 'bin/proj', 'bin/projinfo',
  31. 'lib/libproj.a', 'lib/libproj.%s' % SHLIB_EXT],
  32. 'dirs': ['include'],
  33. }
  34. moduleclass = 'lib'