diff --git a/packages/mpi/openmpi/openmpi-trunk b/packages/mpi/openmpi/openmpi-trunk new file mode 100755 index 0000000..36e9798 --- /dev/null +++ b/packages/mpi/openmpi/openmpi-trunk @@ -0,0 +1,39 @@ +#!/bin/sh +# sit class file +# +# Christoph Niethammer (C) 2011-2014 +# + +CATEGORY="mpi" +PACKAGE="openmpi" +VERSION="trunk" +URL="http://www.open-mpi.org" +INSTALLER="Christoph Niethammer " + +# 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 +}