nodejs-8.9.4-foss-2019a.eb 915 B

12345678910111213141516171819202122232425262728
  1. easyblock = 'ConfigureMake'
  2. name = 'nodejs'
  3. version = '8.9.4'
  4. homepage = 'http://nodejs.org'
  5. description = """Node.js is a platform built on Chrome's JavaScript runtime
  6. for easily building fast, scalable network applications. Node.js uses an
  7. event-driven, non-blocking I/O model that makes it lightweight and efficient,
  8. perfect for data-intensive real-time applications that run across distributed devices."""
  9. toolchain = {'name': 'foss', 'version': '2019a'}
  10. toolchainopts = {'lowopt': True}
  11. sources = ['node-v%(version)s.tar.gz']
  12. source_urls = ['http://nodejs.org/dist/v%(version)s/']
  13. checksums = ['729b44b32b2f82ecd5befac4f7518de0c4e3add34e8fe878f745740a66cbbc01']
  14. # Python is required (only) as build dependency
  15. allow_system_deps = [('Python', SYS_PYTHON_VERSION)]
  16. sanity_check_paths = {
  17. 'files': ["bin/node", "bin/npm"],
  18. 'dirs': ["lib/node_modules", "include/node"]
  19. }
  20. moduleclass = 'lang'