summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/openarena/install.sh
blob: 503c87b6d86e9d5dfef0a7117ee695fc9a90863a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

unzip -o oa081.zip
cd openarena-0.8.1/baseoa
tar -xvf ../../openarena-benchmark-files-4.tar.gz
cd ../..

echo "#!/bin/sh
cd openarena-0.8.1/

case \$OS_ARCH in
	\"x86_64\" )
	./openarena.x86_64 \$@ > \$LOG_FILE 2>&1
	;;
	* )
	./openarena.i386 \$@ > \$LOG_FILE 2>&1
	;;
esac
cat \$LOG_FILE | grep fps" > openarena
chmod +x openarena