Sit class package for Open MPI trunk.
* developer headers * static and shared libs * Java bindings
This commit is contained in:
parent
43ad4b90a4
commit
d8612f979f
1 changed files with 39 additions and 0 deletions
39
packages/mpi/openmpi/openmpi-trunk
Executable file
39
packages/mpi/openmpi/openmpi-trunk
Executable file
|
@ -0,0 +1,39 @@
|
||||||
|
#!/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
|
||||||
|
}
|
Loading…
Reference in a new issue