12345678910111213141516171819202122232425262728 |
- easyblock = 'ConfigureMake'
- name = 'NLopt'
- version = '2.4.2'
- homepage = 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
- description = """ NLopt is a free/open-source library for nonlinear optimization,
- providing a common interface for a number of different free optimization routines
- available online as well as original implementations of various other algorithms. """
- toolchain = {'name': 'intel', 'version': '2017.02'}
- source_urls = ['http://ab-initio.mit.edu/nlopt/']
- sources = [SOURCELOWER_TAR_GZ]
- configopts = '--enable-shared'
- sanity_check_paths = {
- 'files': ["lib/libnlopt.a", "include/nlopt.h"],
- 'dirs': [""],
- }
- moduleclass = 'numlib'
|