UDUNITS-2.2.26-GCCcore-10.2.0.eb 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ##
  2. # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
  3. #
  4. # Copyright:: Copyright 2012-2013 University of Luxembourg, Ghent University
  5. # Authors:: Fotis Georgatos <fotis@cern.ch>, Kenneth Hoste (Ghent University)
  6. # License:: MIT/GPL
  7. # $Id$
  8. #
  9. # This work implements a part of the HPCBIOS project and is a component of the policy:
  10. # http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-97.html
  11. ##
  12. easyblock = 'ConfigureMake'
  13. name = 'UDUNITS'
  14. version = '2.2.26'
  15. homepage = 'https://www.unidata.ucar.edu/software/udunits/'
  16. description = """UDUNITS supports conversion of unit specifications between formatted and binary forms,
  17. arithmetic manipulation of units, and conversion of values between compatible scales of measurement."""
  18. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  19. toolchainopts = {'pic': True}
  20. source_urls = ['https://www.unidata.ucar.edu/downloads/udunits']
  21. sources = [SOURCELOWER_TAR_GZ]
  22. checksums = ['368f4869c9c7d50d2920fa8c58654124e9ed0d8d2a8c714a9d7fdadc08c7356d']
  23. builddependencies = [('binutils', '2.35')]
  24. dependencies = [('expat', '2.2.9')]
  25. sanity_check_paths = {
  26. 'files': ['bin/udunits2', 'include/converter.h', 'include/udunits2.h', 'include/udunits.h',
  27. 'lib/libudunits2.a', 'lib/libudunits2.%s' % SHLIB_EXT],
  28. 'dirs': ['share'],
  29. }
  30. parallel = 1
  31. moduleclass = 'phys'