26 lines
422 B
Groff
26 lines
422 B
Groff
|
#!/bin/sh
|
||
|
# sit class file
|
||
|
#
|
||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
||
|
#
|
||
|
|
||
|
CATEGORY="utils"
|
||
|
PACKAGE="git"
|
||
|
VERSION="1.7.3.4"
|
||
|
URL="http://git-scm.com"
|
||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||
|
|
||
|
# Archive A and package name P
|
||
|
A=${PACKAGE}-${VERSION}.tar.bz2
|
||
|
P=${PACKAGE}-${VERSION}
|
||
|
|
||
|
BUILDDIR=$SRCDIR
|
||
|
|
||
|
# Other interesting configure options:
|
||
|
CONFIGURE_OPTS="
|
||
|
"
|
||
|
|
||
|
src_pretest() {
|
||
|
make check
|
||
|
}
|