30 lines
616 B
Groff
30 lines
616 B
Groff
|
#!/bin/sh
|
||
|
# sit class file
|
||
|
#
|
||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||
|
#
|
||
|
|
||
|
CATEGORY="tools"
|
||
|
PACKAGE="cube"
|
||
|
VERSION="4.3.2"
|
||
|
URL="http://www.scalasca.org/software/cube-4.x/download.html"
|
||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||
|
|
||
|
CFLAGS+=-fnopermissive
|
||
|
|
||
|
# Archive A and package name P
|
||
|
A="${PACKAGE}-${VERSION}.tar.gz"
|
||
|
P="${PACKAGE}-${VERSION}"
|
||
|
|
||
|
QT4_DIR=${QT4_DIR:=$(dirname $(dirname $(which qmake)))}
|
||
|
#--with-tools \
|
||
|
#--with-gui \
|
||
|
#--with-qt=$QT4_DIR \
|
||
|
|
||
|
# Other interesting configure options:
|
||
|
#--enable-sampling \
|
||
|
CONFIGURE_OPTS=" \
|
||
|
--enable-shared \
|
||
|
--enable-static \
|
||
|
"
|