Added sit class file for ayudame.

This commit is contained in:
Christoph Niethammer 2013-02-04 11:31:54 +00:00
parent 5799aed066
commit 42ba246ad3

View file

@ -0,0 +1,37 @@
#!/bin/sh
# sit class file
#
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
#
CATEGORY="libs"
PACKAGE="ayudame"
VERSION="current"
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
SRCDIR="$SRC_POOL/ayudame/ayudame.git/Ayudame"
src_unpack() {
# cd $src_dir
# git checkout master
# git pull
/bin/true
}
src_prepare() {
rm -rf autom4te.cache
autoreconf -vif
version=$(git rev-list -n 1 master)
}
src_install() {
make install
echo "$PACKAGE: $version" > $PREFIX/VERSION.txt
}
src_pretest() {
/bin/true
}