Sit class file for Open MPi git master branch.
This commit is contained in:
parent
1d6ef2a17f
commit
5d51934894
1 changed files with 40 additions and 0 deletions
40
packages/mpi/openmpi/openmpi-git-master
Executable file
40
packages/mpi/openmpi/openmpi-git-master
Executable file
|
@ -0,0 +1,40 @@
|
|||
#!/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
|
||||
}
|
Loading…
Reference in a new issue