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>
24 lines
562 B
Bash
Executable file
24 lines
562 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2012
|
|
#
|
|
|
|
CATEGORY="debugger"
|
|
PACKAGE="marmot"
|
|
VERSION="2.4.0"
|
|
URL="http://www.hlrs.de/organization/av/amt/projects/marmot/"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
# Archive A and package name P
|
|
A=Marmot-${VERSION}-Source.tar.gz
|
|
P=Marmot-${VERSION}-Source
|
|
|
|
|
|
# Other interesting configure options:
|
|
# DDT plugin requires CUBE support
|
|
# copy share/marmot/examples/marmot ddt plugin.xml into ddt's plugins folder
|
|
# -DMARMOT_USE_CUBE \
|
|
# -DMARMOT_USE_OPENMP \
|
|
CMAKE_OPT=""
|
|
|