ncbi-rmblastn: add missing dependencies (#29606)

missing dependencies
- boost
- lzo

Also, turn off libuv. This does not build properly with libuv so it is
not a dependency. However, configure will look for libuv on the system
and try to use it if found, thus breaking the build.
This commit is contained in:
Glenn Johnson 2022-04-04 03:50:36 -05:00 committed by GitHub
parent d04f6e47ff
commit 1e437bbc66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,8 @@ class NcbiRmblastn(AutotoolsPackage):
when='@2.9.0' when='@2.9.0'
) )
depends_on('cpio', type='build') depends_on('cpio', type='build')
depends_on('boost')
depends_on('lzo')
configure_directory = 'c++' configure_directory = 'c++'
@ -48,5 +50,7 @@ def configure_args(self):
"--without-debug", "--without-debug",
"--without-krb5", "--without-krb5",
"--without-openssl", "--without-openssl",
"--with-projects=scripts/projects/rmblastn/project.lst"] "--without-libuv",
"--with-projects=scripts/projects/rmblastn/project.lst",
]
return args return args