PROJ-5.2.0-GCCcore-8.2.0.eb 985 B

12345678910111213141516171819202122232425262728293031323334353637
  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 = '5.2.0'
  12. homepage = 'http://trac.osgeo.org/proj/'
  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': '8.2.0'}
  16. toolchainopts = {'pic': True}
  17. source_urls = ['http://download.osgeo.org/proj/']
  18. sources = [SOURCELOWER_TAR_GZ]
  19. builddependencies = [
  20. ('pkg-config', '0.29.2'),
  21. ('binutils', '2.31.1'),
  22. ]
  23. dependencies = [('SQLite', '3.27.2')]
  24. sanity_check_paths = {
  25. 'files': ['bin/cct', 'bin/cs2cs', 'bin/geod', 'bin/gie', 'bin/proj', 'bin/nad2bin',
  26. 'lib/libproj.a', 'lib/libproj.%s' % SHLIB_EXT],
  27. 'dirs': ['include'],
  28. }
  29. moduleclass = 'lib'