From 65c3540ad7a49f3d88da9ca25052b5681232c81f Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 3 Jun 2016 17:29:18 +0200 Subject: [PATCH] HDF5/build: - declaration of dependencies moved to variants file - building of Fortran API enabled - building shared libs enabled - building Python API enabled if major version >= 0 --- HDF5/H5hut/build | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/HDF5/H5hut/build b/HDF5/H5hut/build index cee3e9d..aa27d0b 100755 --- a/HDF5/H5hut/build +++ b/HDF5/H5hut/build @@ -5,19 +5,19 @@ pbuild::pre_configure() { } pbuild::configure() { - CC=$MPICC - CXX=$MPICXX - F77=$MPIF77 - F90=$MPIF90 - FC=$MPIFC - FORTRAN=$MPIFORTRAN - #( cd "${MODULE_SRCDIR}" && ./autogen.sh ) + if (( V_MAJOR >= 2 )); then + config_args+=" --enable-python" + fi + "${MODULE_SRCDIR}"/configure \ --prefix="${PREFIX}" \ --enable-parallel \ --enable-debug \ + --enable-fortran \ + --enable-shared \ --with-hdf5=$HDF5_PREFIX \ --with-pic \ + ${config_args} \ || exit 1 } @@ -33,8 +33,6 @@ pbuild::install() { pbuild::add_to_group 'HDF5' -pbuild::set_runtime_dependencies "${COMPILER}" "${MPI}" 'hdf5' -pbuild::set_build_dependencies "autoconf" "automake" "libtool" "${COMPILER}" "${MPI}" "hdf5" pbuild::set_docfiles 'AUTHORS' 'COPYING' pbuild::make_all