mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: a/Autoconf/Autoconf-2.71-foss-2022b.eb new file: a/Automake/Automake-1.15.eb new file: a/Automake/Automake-1.16.eb new file: a/Autotools/Autotools-20180311-foss-2022b.eb new file: b/Boost/Boost-1.77.0-foss-2022b.eb new file: c/CMake/CMake-3.20.1-foss-2022b.eb new file: c/cURL/cURL-7.76.0-foss-2022b.eb new file: f/Firefox/Firefox-127.0.1.eb modified: f/Firefox/Firefox-44.0.2.eb new file: g/GCC/GCC-13.2.0-foss-2022b.eb new file: g/GCCcore/GCCcore-13.2.0-foss-2022b.eb modified: g/GMP/GMP-6.1.2.eb new file: h/HDF5/HDF5-1.14.0-iimpi-2023a.eb new file: j/JupyterLab/JupyterLab-4.2.0-GCCcore-13.2.0.eb new file: j/jupyter-server/jupyter-server-2.14.0-GCCcore-13.2.0.eb modified: l/libffi/libffi-3.2.1.eb modified: l/libreadline/libreadline-8.0.eb new file: l/libxc/libxc-6.2.2-NVHPC-24.3-CUDA-12.3.0.eb new file: n/ncurses/ncurses-6.2-foss-2022b.eb new file: o/OpenVDB/OpenVDB-11.0.0-foss-2022b-Python-3.10.8.eb new file: o/OpenVDB/OpenVDB-11.0.0-foss-2022b-Python-3.9.9.eb new file: o/OpenVDB/OpenVDB-11.0.0-foss-2022b.eb new file: p/Python/Python-3.11.5-foss-2022b.eb new file: p/Python/Python-3.9.9.eb modified: s/SQLite/SQLite-3.27.2.eb modified: t/Tcl/Tcl-8.6.9.eb new file: t/TurboVNC/TurboVNC-3.1.1-GCCcore-13.2.0.eb new file: z/zlib/zlib-1.2.10-foss-2022b.eb new file: z/zlib/zlib-1.2.11-foss-2022b.eb
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libreadline'
|
|
version = '8.0'
|
|
|
|
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 = SYSTEM
|
|
toolchainopts = {'pic': True}
|
|
|
|
sources = ['readline-%(version)s.tar.gz']
|
|
source_urls = ['http://ftp.gnu.org/gnu/readline']
|
|
|
|
checksums = ['914ee417b4607c75c95b53bc73a0599de4157c7d6a32e849e80f24e40fb64181']
|
|
|
|
dependencies = [('ncurses', '6.1')]
|
|
|
|
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': [],
|
|
}
|
|
|
|
buildopts = "CC=gcc CFLAGS='-O3 -fPIC'"
|
|
|
|
moduleclass = 'lib'
|