Christoph Niethammer
068686efb3
Moved packages into sub directories easing the use of additional installation files (e.g. patches). Calling sit now with the following syntax: [OPTIONS] ./sit <category>/<package>/<package>-<version>
25 lines
451 B
Bash
Executable file
25 lines
451 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
|
#
|
|
|
|
CATEGORY="performance"
|
|
PACKAGE="ppw"
|
|
VERSION="2.8beta"
|
|
URL="http://ppw.hcs.ufl.edu"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
|
|
# Archive A and package name P
|
|
A="${PACKAGE}-${VERSION}.tar.gz"
|
|
P="${PACKAGE}-${VERSION}"
|
|
|
|
|
|
# Other interesting configure options:
|
|
#--enable-sampling \
|
|
CONFIGURE_OPTS="\
|
|
--with-mpi=$MPI_DIR \
|
|
--with-upc=$BUPC_HOME \
|
|
"
|
|
|