lua: specified better the dependency on ncurses (needs +termlib) (#18163)

Semi-recently the lua spackage was updated to explicitly add libtinfow
to the lua build line. Ncurses provides this but only when the +termlib
variant is enabled
This commit is contained in:
Robert Pavel 2020-08-19 00:23:56 -06:00 committed by GitHub
parent bef560636d
commit bc34ab4701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ class Lua(Package):
extendable = True
depends_on('ncurses')
depends_on('ncurses+termlib')
depends_on('readline')
# luarocks needs unzip for some packages (e.g. lua-luaposix)
depends_on('unzip', type='run')