FANN-2.2.0-GCCcore-7.3.0.eb 791 B

123456789101112131415161718192021222324252627
  1. easyblock = 'CMakeMake'
  2. name = 'FANN'
  3. version = '2.2.0'
  4. homepage = 'http://leenissen.dk'
  5. description = """Fast Artificial Neural Network Library is a free open source neural network library,
  6. which implements multilayer artificial neural networks in C with support for both fully connected
  7. and sparsely connected networks."""
  8. toolchain = {'name': 'GCCcore', 'version': '7.3.0'}
  9. source_urls = ['https://github.com/lib%(namelower)s/%(namelower)s/archive']
  10. sources = ['%(version)s.tar.gz']
  11. checksums = ['f31c92c1589996f97d855939b37293478ac03d24b4e1c08ff21e0bd093449c3c']
  12. builddependencies = [
  13. ('binutils', '2.30'),
  14. ('CMake', '3.12.1'),
  15. ]
  16. sanity_check_paths = {
  17. 'files': ['include/fann.h', 'lib/libfann.%s' % SHLIB_EXT],
  18. 'dirs': ['include', 'lib'],
  19. }
  20. moduleclass = 'lib'