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:
parent
d04f6e47ff
commit
1e437bbc66
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user