dnstop: needs ncurses and it forgot to add -ltinfo (#26163)

dnstop misses a depends('ncurses') and it needs
to link with libtinfo from ncurses as well.
This commit is contained in:
bernhardkaindl 2021-09-26 10:30:42 +02:00 committed by GitHub
parent 9a64a229a0
commit 2154786b61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,10 @@ class Dnstop(AutotoolsPackage):
version('master', branch='master')
depends_on('libpcap')
depends_on('ncurses')
def configure_args(self):
return ['LIBS=-ltinfo']
def install(self, spec, prefix):
mkdirp(prefix.bin)