Bison-2.7-intel-2018.eb 595 B

12345678910111213141516171819202122
  1. easyblock = 'ConfigureMake'
  2. name = 'Bison'
  3. version = '2.7'
  4. homepage = 'http://www.gnu.org/software/bison'
  5. description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
  6. into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
  7. toolchain = {'name': 'intel', 'version': '2018'}
  8. sources = [SOURCELOWER_TAR_GZ]
  9. source_urls = [GNU_SOURCE]
  10. builddependencies = [('M4', '1.4.17')]
  11. sanity_check_paths = {
  12. 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
  13. 'dirs': [],
  14. }
  15. moduleclass = 'lang'