gperf-3.0.4-intel-2018.eb 682 B

12345678910111213141516171819202122
  1. easyblock = 'ConfigureMake'
  2. name = 'gperf'
  3. version = '3.0.4'
  4. homepage = 'http://www.gnu.org/software/gperf/'
  5. description = """GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash
  6. function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash
  7. function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single
  8. string comparison only."""
  9. toolchain = {'name': 'intel', 'version': '2018'}
  10. source_urls = [GNU_SOURCE]
  11. sources = [SOURCELOWER_TAR_GZ]
  12. sanity_check_paths = {
  13. 'files': ['bin/gperf'],
  14. 'dirs': []
  15. }
  16. moduleclass = 'devel'