mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libreadline'
|
|
version = '6.3'
|
|
|
|
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': 'gompi', 'version': '2015e'}
|
|
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'
|