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>
23 lines
491 B
Bash
Executable file
23 lines
491 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
|
#
|
|
|
|
CATEGORY="libs"
|
|
PACKAGE="fastflow"
|
|
VERSION="1.1.0"
|
|
URL="http://calvados.di.unipi.it/dokuwiki/doku.php?id=ffnamespace:about"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
# Archive A and package name P
|
|
A=${PACKAGE}-${VERSION}.tar.bz2
|
|
P=${PACKAGE}-${VERSION}
|
|
|
|
|
|
# Other interesting configure options:
|
|
CONFIGURE_OPTS=""
|
|
|
|
src_prepare () {
|
|
patch CMakeLists.txt < $SCLASS_DIR/$SCLASSFILE-0000.patch
|
|
}
|