# new file: f/flex/flex-2.5.37-intel-2015b.eb

#	new file:   l/libreadline/libreadline-6.2-intel-2015b.eb
#	new file:   s/SCOTCH/SCOTCH-6.0.0_esmumps-intel-2015b.eb
This commit is contained in:
Easy Build 2017-03-27 07:53:59 +02:00
parent 470043fe7f
commit be5132f5d6
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,14 @@
name = 'flex'
version = '2.5.37'
homepage = 'http://flex.sourceforge.net/'
description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
toolchain = {'name': 'intel', 'version': '2015b'}
toolchainopts = {'pic': True}
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
moduleclass = 'lang'

View File

@ -0,0 +1,27 @@
easyblock = 'ConfigureMake'
name = 'libreadline'
version = '6.2'
homepage = 'http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html'
description = """The GNU Readline library provides a set of functions for use by applications that
allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available.
The Readline library includes additional functions to maintain a list of previously-entered command lines,
to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands."""
toolchain = {'name': 'intel', 'version': '2015b'}
toolchainopts = {'pic': True}
sources = ['readline-%(version)s.tar.gz']
source_urls = ['http://ftp.gnu.org/gnu/readline']
dependencies = [('ncurses', '5.9')]
sanity_check_paths = {
'files' : ['lib/libreadline.a', 'lib/libhistory.a'] +
['include/readline/%s' % x for x in ['chardefs.h', 'history.h', 'keymaps.h', 'readline.h', 'rlconf.h',
'rlstdc.h', 'rltypedefs.h', 'tilde.h']],
'dirs' : [],
}
moduleclass = 'lib'

View File

@ -0,0 +1,14 @@
name = 'SCOTCH'
version = '6.0.0_esmumps'
homepage = 'http://gforge.inria.fr/projects/scotch/'
description = """Software package and libraries for sequential and parallel graph partitioning,
static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning."""
toolchain = {'name': 'intel', 'version': '2015b'}
toolchainopts = {'pic': True}
source_urls = ['https://gforge.inria.fr/frs/download.php/31832/']
sources = ['%(namelower)s_%(version)s.tar.gz']
moduleclass = 'math'