orca-1.2.1-foss-2018b-nodejs-8.9.4.eb 814 B

123456789101112131415161718192021222324252627
  1. easyblock = 'Binary'
  2. name = 'orca'
  3. version = '1.2.1'
  4. nodejsver = '8.9.4'
  5. versionsuffix = '-nodejs-%s' % nodejsver
  6. homepage = 'https://github.com/plotly/orca'
  7. description = """Orca is an Electron app that generates images and reports of Plotly things like
  8. plotly.js graphs, dash apps, dashboards from the command line. Additionally, Orca is the backbone
  9. of Plotly's Image Server. Orca is also an acronym for Open-source Report Creator App."""
  10. toolchain = {'name': 'foss', 'version': '2018b'}
  11. source_urls = ['https://github.com/plotly/orca/archive/']
  12. sources = ['v%(version)s.tar.gz']
  13. dependencies = [
  14. ('nodejs', nodejsver),
  15. ('X11', '20180604'),
  16. ]
  17. install_cmd = 'npm install --prefix %(installdir)s -g electron@1.8.4 %(name)s'
  18. sanity_check_commands = ['%(name)s --version']
  19. moduleclass = 'tools'