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