#!/bin/sh # sit class file # # Christoph Niethammer (C) 2011 # CATEGORY="performance" PACKAGE="extrae" VERSION="2.1.1" URL="http://www.bsc.es" INSTALLER="Christoph Niethammer " # Archive A and package name P A=${PACKAGE}-${VERSION}.tar.bz2 P=${PACKAGE}-${VERSION} enable_papi=${enable_papi:=0} # Other interesting configure options: CONFIGURE_OPTS="\ --with-mpi=$MPI_DIR \ --enable-sampling \ " # use PAPI if [ $enable_papi != 0 ] ; then module load system/perfctr system/papi PAPI_DIR=$(dirname $(dirname $(which papi_avail))) CONFIGURE_OPTS="$CONFIGURE_OPTS --with-papi=$PAPI_DIR" fi # currently extrae has to be build in the source directory BUILDDIR="${SRCDIR}" src_install() { mkdir -p $PREFIX make install || sit_fail "Installation failed" }