samtools could not find the ncurses library (#1785)

This commit is contained in:
Tom Merrick 2016-09-20 04:27:19 -05:00 committed by Todd Gamblin
parent ea446c0f0e
commit d71f8dcab5

View file

@ -42,7 +42,8 @@ class Samtools(Package):
def install(self, spec, prefix):
if self.spec.version >= Version('1.3.1'):
configure('--prefix={0}'.format(prefix), '--with-ncurses')
configure('--prefix={0}'.format(prefix), '--with-ncurses',
'CURSES_LIB=-lncurses')
make()
make('install')
else: