summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/trunk/mp_all.sh
blob: 45ea44eba9c6609688da50a6860b14127bc1ed32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
_svnver=20713

# NOTE: Make sure to build and install mythtv first BEFORE building anything else
buildlist=('mythtv' 'mytharchive' 'mythbrowser' 'mythflix' 'mythgallery' 'mythgame' 'mythmovies' 'mythmusic' 'mythnews' 'mythvideo' 'mythweather' 'mythzoneminder' 'mythweb' 'myththemes' 'morethemes')

# build and install
for i in `echo ${buildlist[@]:0}`
do
	echo "---------- building $i ----------"
	cd ./$i
	mp -f -i --holdver || exit 1
	rm -rf pkg
	rm -f *~
	cd ..
done

echo ""
echo "DONE!"