JAGS-4.2.0-intel-2018.eb 937 B

1234567891011121314151617181920212223242526272829303132
  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 = 'JAGS'
  7. version = '4.2.0'
  8. homepage = 'http://mcmc-jags.sourceforge.net/'
  9. description = """JAGS is Just Another Gibbs Sampler. It is a program for analysis
  10. of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC) simulation """
  11. toolchain = {'name': 'intel', 'version': '2018'}
  12. source_urls = [('http://sourceforge.net/projects/mcmc-jags/files/JAGS/%(version_major)s.x/Source/', 'download')]
  13. sources = [SOURCE_TAR_GZ]
  14. configopts = ' --with-blas="-lmkl" --with-lapack="-lmkl" '
  15. sanity_check_paths = {
  16. 'files': ["bin/jags", "libexec/jags-terminal", "lib/libjags.%s" % SHLIB_EXT],
  17. 'dirs': []
  18. }
  19. modextrapaths = {
  20. 'JAGS_INCLUDE': 'include/JAGS',
  21. 'JAGS_LIB': 'lib',
  22. }
  23. moduleclass = 'math'