sit/packages/mpi/openmpi/openmpi-trunk
Christoph Niethammer d8612f979f Sit class package for Open MPI trunk.
* developer headers
* static and shared libs
* Java bindings
2024-03-28 02:45:19 +01:00

39 lines
662 B
Bash
Executable file

#!/bin/sh
# sit class file
#
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011-2014
#
CATEGORY="mpi"
PACKAGE="openmpi"
VERSION="trunk"
URL="http://www.open-mpi.org"
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
# Archive A and package name P
SRCDIR=${SRC_POOL}/openmpi-trunk
# Other interesting configure options:
# --enable-mpi-threads
# --enable-progress-threads
# --with-fca=DIR
# --enable-contrib-no-build=vt
CONFIGURE_OPTS="
--with-devel-headers \
--enable-shared \
--enable-static \
--enable-mpi-java \
"
src_unpack() {
/bin/true
}
src_prepare() {
./autogen.pl
}
src_pretest() {
make check
}