27 lines
427 B
Groff
27 lines
427 B
Groff
|
#!/bin/sh
|
||
|
# sit class file
|
||
|
#
|
||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||
|
#
|
||
|
|
||
|
CATEGORY="tools"
|
||
|
PACKAGE="swig"
|
||
|
VERSION="3.0.5"
|
||
|
URL="http://http://www.swig.org"
|
||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||
|
|
||
|
# Archive A and package name P
|
||
|
A=${PACKAGE}-${VERSION}.tar.gz
|
||
|
P=${PACKAGE}-${VERSION}
|
||
|
|
||
|
BUILDDIR=$SRCDIR
|
||
|
|
||
|
# Other interesting configure options:
|
||
|
CONFIGURE_OPTS="
|
||
|
"
|
||
|
|
||
|
|
||
|
src_pretest() {
|
||
|
make check
|
||
|
}
|