30 lines
669 B
Bash
Executable file
30 lines
669 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2012
|
|
#
|
|
# sit command:
|
|
# PREFIX_BASE=/opt ./sit tools/hdf5/1.8.14
|
|
#
|
|
# sit command for trilinos with mpi:
|
|
# PREFIX_BASE=/opt COMPILER=gnu COMPILER_VERSION=4.8.1 MPI=openmpi MPI_VERSION=1.6.5 ./sit tools/hdf5/1.8.14
|
|
|
|
CATEGORY="tools"
|
|
PACKAGE="hdf5"
|
|
VERSION="1.8.14"
|
|
URL="http://trilinos.sandia.gov/"
|
|
INSTALLER="Elke Flehmig <flehmig@hlrs.de>"
|
|
|
|
# cmake 2.8 or higher is required
|
|
case $PLATFORM in
|
|
hermit|hermit1)
|
|
sit_fail "on hermit, hdf5 is installed by cray!"
|
|
;;
|
|
esac
|
|
|
|
# now continue for laki
|
|
|
|
# Archive A and package name P
|
|
A=${PACKAGE}-${VERSION}.tar.gz
|
|
P=${PACKAGE}-${VERSION}
|
|
|