mirror of
https://github.com/mpv-player/mpv
synced 2025-01-06 23:20:15 +00:00
25 lines
317 B
Plaintext
25 lines
317 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. ./variables
|
||
|
|
||
|
rm -f $LOGFILE
|
||
|
|
||
|
wrtlog Script version v0.9
|
||
|
wrtlog CPU: $VENDOR $MODEL $MHZ
|
||
|
wrtlog MEM: $MEMORY
|
||
|
wrtlog VGA: $VGA
|
||
|
|
||
|
if [ ! -e no_compile ]; then
|
||
|
./compile
|
||
|
else
|
||
|
wrtlog Skipping compilation
|
||
|
fi
|
||
|
|
||
|
if [ ! -e no_benchmark ]; then
|
||
|
./benchmark
|
||
|
else
|
||
|
wrtlog Skipping benchmark
|
||
|
fi
|
||
|
|
||
|
wrtlog Exiting.
|