ANTLR-2.7.7-intel-2017.02.eb 783 B

123456789101112131415161718192021222324252627282930
  1. easyblock = 'ConfigureMake'
  2. name = 'ANTLR'
  3. version = '2.7.7'
  4. homepage = 'http://www.antlr2.org/'
  5. description = """ANTLR, ANother Tool for Language Recognition, (formerly PCCTS)
  6. is a language tool that provides a framework for constructing recognizers,
  7. compilers, and translators from grammatical descriptions containing
  8. Java, C#, C++, or Python actions."""
  9. toolchain = {'name': 'intel', 'version': '2017.02'}
  10. source_urls = ['http://www.antlr2.org/download/']
  11. sources = [SOURCELOWER_TAR_GZ]
  12. patches = ['%(name)s-%(version)s_includes.patch']
  13. dependencies = [
  14. ('Python', '2.7.13'),
  15. ]
  16. configopts = '--disable-examples --disable-csharp --disable-java'
  17. sanity_check_paths = {
  18. 'files': ['bin/antlr', 'bin/antlr-config'],
  19. 'dirs': ['include'],
  20. }
  21. moduleclass = 'tools'