easyconfigs-it4i/n/ncurses/ncurses-6.2-foss-2022b.eb
Lukas Krupcik 8a30a3c673 new file: a/Autoconf/Autoconf-2.69-foss-2022b.eb
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
2024-06-27 12:44:26 +02:00

41 lines
1.5 KiB
Plaintext

# IT4Innovations
# BS 2024
easyblock = 'ConfigureMake'
name = 'ncurses'
version = '6.2'
homepage = 'http://www.gnu.org/software/ncurses/'
description = """The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0,
and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and
function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses."""
toolchain = {'name': 'foss', 'version': '2022b'}
toolchainopts = {'optarch': True, 'pic': True}
source_urls = [GNU_SOURCE]
sources = [SOURCE_TAR_GZ]
checksums = ['aa057eeeb4a14d470101eff4597d5833dcef5965331be3528c08d99cebaa0d17']
buildopts = 'CFLAGS="-O3 -fPIC"'
configopts = [
# default build
'--with-shared --enable-overwrite',
# the UTF-8 enabled version (ncursesw)
'--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/'
]
local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", "infotocap", "ncurses%(version_major)s-config",
"reset", "tabs", "tic", "toe", "tput", "tset"]] +
['lib/lib%s%s.a' % (x, y) for x in local_libs for y in ['', '_g', 'w', 'w_g']] +
['lib/lib%s%s.%s' % (x, y, SHLIB_EXT) for x in local_libs for y in ['', 'w']] +
['lib/libncurses++%s.a' % x for x in ['', 'w']],
'dirs': ['include', 'include/ncursesw'],
}
moduleclass = 'devel'