NLopt-2.4.2-intel-2018.eb 842 B

12345678910111213141516171819202122232425262728
  1. # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
  2. # Author: Pablo Escobar Lopez
  3. # Swiss Institute of Bioinformatics
  4. # Biozentrum - University of Basel
  5. easyblock = 'ConfigureMake'
  6. name = 'NLopt'
  7. version = '2.4.2'
  8. homepage = 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
  9. description = """ NLopt is a free/open-source library for nonlinear optimization,
  10. providing a common interface for a number of different free optimization routines
  11. available online as well as original implementations of various other algorithms. """
  12. toolchain = {'name': 'intel', 'version': '2018'}
  13. source_urls = ['http://ab-initio.mit.edu/nlopt/']
  14. sources = [SOURCELOWER_TAR_GZ]
  15. configopts = '--enable-shared'
  16. sanity_check_paths = {
  17. 'files': ["lib/libnlopt.a", "include/nlopt.h"],
  18. 'dirs': [""],
  19. }
  20. moduleclass = 'numlib'