#!/bin/sh # sit class file # # Christoph Niethammer (C) 2011-2016 # CATEGORY="mpi" PACKAGE="openmpi" VERSION="master" URL="http://www.open-mpi.org" INSTALLER="Christoph Niethammer " # 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 }