25 lines
446 B
Groff
25 lines
446 B
Groff
|
#!/bin/sh
|
||
|
# sit class file
|
||
|
#
|
||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2019
|
||
|
#
|
||
|
|
||
|
CATEGORY="numlib"
|
||
|
PACKAGE="sumo"
|
||
|
VERSION="1.3.1"
|
||
|
URL="https://sumo.dlr.de"
|
||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||
|
|
||
|
# Archive A and package name P
|
||
|
A="$PACKAGE-src-$VERSION.tar.gz"
|
||
|
P="$PACKAGE-$VERSION"
|
||
|
|
||
|
CONFIGURE_OPTS="
|
||
|
--enable-shared \
|
||
|
--enable-static \
|
||
|
--enable-mpi-thread-multiple \
|
||
|
"
|
||
|
src_pretest() {
|
||
|
make check
|
||
|
}
|