Update the original install script.

This commit is contained in:
Christoph Niethammer 2011-03-03 08:41:01 +00:00
parent 6538038861
commit 66c12c307e

View file

@ -24,7 +24,7 @@ MPI=${MPI:=openmpi}
# package to build # package to build
CATEGORY="performance" CATEGORY="performance"
PACKAGE="VampirTrace" PACKAGE="vampirtrace"
VERSION="5.10" VERSION="5.10"
# add a descriptor at the end of the installation path e.g. for special config options etc. # add a descriptor at the end of the installation path e.g. for special config options etc.
@ -32,9 +32,10 @@ PACKAGE_DESCRIPTOR=${PACKAGE_DESCRIPTOR:+-$PACKAGE_DESCRIPTOR}
# Archive A and package name P # Archive A and package name P
# archive can be tar.bz2 or tar.gz file # archive can be tar.bz2 or tar.gz file
A=${PACKAGE}-${VERSION}.tar.gz A="VampirTrace-${VERSION}.tar.gz"
P=${PACKAGE}-${VERSION} P="VampirTrace-${VERSION}"
# If you want to use the CC, CXX, FC or F77 variables for the compilers put the following # If you want to use the CC, CXX, FC or F77 variables for the compilers put the following
# below the compiler loading section! # below the compiler loading section!
@ -112,7 +113,7 @@ CONFIGURE_OPTS="\
MAKEOPTS="-j8" MAKEOPTS="-j8"
# construct the final installation directory path # construct the final installation directory path
PREFIX="${PREFIX_BASE}/${CATEGORY}/vampirtrace/${VERSION}-${MPI}-${MPI_VERSION}${PACKAGE_DESCRIPTOR}" PREFIX="${PREFIX_BASE}/${CATEGORY}/${PACKAGE}/${VERSION}-${MPI}-${MPI_VERSION}${PACKAGE_DESCRIPTOR}"
# basepath for the working directory # basepath for the working directory
ORIGDIR="${HOME}/work" ORIGDIR="${HOME}/work"