23 lines
389 B
Groff
23 lines
389 B
Groff
|
#!/bin/sh
|
||
|
# sit class file
|
||
|
#
|
||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2019
|
||
|
#
|
||
|
|
||
|
CATEGORY="performance"
|
||
|
PACKAGE="pdt"
|
||
|
VERSION="3.25.1"
|
||
|
URL="https://www.cs.uoregon.edu/research/pdt/"
|
||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||
|
|
||
|
# Archive A and package name P
|
||
|
A="$PACKAGE-$VERSION.tar.gz"
|
||
|
P="pdtoolkit-$VERSION"
|
||
|
|
||
|
BUILDDIR=$SRCDIR
|
||
|
|
||
|
CONFIGURE_OPTS="
|
||
|
-prefix=$PREFIX \
|
||
|
"
|
||
|
|