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

echo "#!/bin/sh

if [ ! -f MPlayer-1.0rc2.tar.bz2 ]
  then
	echo \"MPlayer Not Installed... Build Failed.\"
	exit
fi

rm -rf MPlayer-1.0rc2/
tar -xjf MPlayer-1.0rc2.tar.bz2
cd MPlayer-1.0rc2/
./configure > /dev/null
sleep 3
\$TIMER_START
make -j \$NUM_CPU_JOBS 2>&1
\$TIMER_STOP" > time-compile-mplayer

chmod +x time-compile-mplayer