M4-1.4.17-intel-2018.eb 917 B

1234567891011121314151617181920212223242526
  1. easyblock = 'ConfigureMake'
  2. name = 'M4'
  3. version = '1.4.17'
  4. homepage = 'http://www.gnu.org/software/m4/m4.html'
  5. description = """GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible
  6. although it has some extensions (for example, handling more than 9 positional parameters to macros).
  7. GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc."""
  8. toolchain = {'name': 'intel', 'version': '2018'}
  9. source_urls = [GNU_SOURCE]
  10. sources = [SOURCELOWER_TAR_GZ]
  11. checksums = ['3ce725133ee552b8b4baca7837fb772940b25e81b2a9dc92537aeaf733538c9e']
  12. # '-fgnu89-inline' is required to avoid linking errors with older glibc's,
  13. # see https://github.com/easybuilders/easybuild-easyconfigs/issues/529
  14. configopts = "--enable-c++ CPPFLAGS=-fgnu89-inline"
  15. sanity_check_paths = {
  16. 'files': ["bin/m4"],
  17. 'dirs': [],
  18. }
  19. moduleclass = 'devel'