arpack-ng needs an extra libtoolize to build.

This commit is contained in:
Todd Gamblin 2016-03-30 23:33:57 -07:00
parent 892b8f155f
commit 44b8947445

View file

@ -41,10 +41,17 @@ class ArpackNg(Package):
depends_on('blas')
depends_on('lapack')
depends_on('automake')
depends_on('autoconf')
depends_on('libtool@2.4.2:')
depends_on('mpi', when='+mpi')
def install(self, spec, prefix):
# Apparently autotools are not bootstrapped
# TODO: switch to use the CMake build in the next version
# rather than bootstrapping.
which('libtoolize')()
bootstrap = Executable('./bootstrap')
options = ['--prefix=%s' % prefix]