Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-6.4.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ configopts = [
local_common_configopts + "--enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/",
]

# Symlink libtinfo to libncurses (since it can handle the API) so it doesn't get picked up from the OS
postinstallcmds = [
"(cd %(installdir)s/lib && ln -s libncurses.so libtinfo.so)",
"(cd %(installdir)s/lib && ln -s libncurses.a libtinfo.a)"
]

local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp",
Expand Down
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-7.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ configopts = [
local_common_configopts + "--enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/",
]

# Symlink libtinfo to libncurses (since it can handle the API) so it doesn't get picked up from the OS
postinstallcmds = [
"(cd %(installdir)s/lib && ln -s libncurses.so libtinfo.so)",
"(cd %(installdir)s/lib && ln -s libncurses.a libtinfo.a)"
]

local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp",
Expand Down
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-7.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ configopts = [
local_common_configopts + "--enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/",
]

# Symlink libtinfo to libncurses (since it can handle the API) so it doesn't get picked up from the OS
postinstallcmds = [
"(cd %(installdir)s/lib && ln -s libncurses.so libtinfo.so)",
"(cd %(installdir)s/lib && ln -s libncurses.a libtinfo.a)"
]

local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp",
Expand Down
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-8.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ configopts = [
local_common_configopts + "--enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/",
]

# Symlink libtinfo to libncurses (since it can handle the API) so it doesn't get picked up from the OS
postinstallcmds = [
"(cd %(installdir)s/lib && ln -s libncurses.so libtinfo.so)",
"(cd %(installdir)s/lib && ln -s libncurses.a libtinfo.a)"
]

local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp",
Expand Down
6 changes: 6 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-8.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ configopts = [
local_common_configopts + "--enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/",
]

# Symlink libtinfo to libncurses (since it can handle the API) so it doesn't get picked up from the OS
postinstallcmds = [
"(cd %(installdir)s/lib && ln -s libncurses.so libtinfo.so)",
"(cd %(installdir)s/lib && ln -s libncurses.a libtinfo.a)"
]

local_libs = ["form", "menu", "ncurses", "panel"]
sanity_check_paths = {
'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp",
Expand Down