#!/bin/sh _svnver=20684 # 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 --holdver || exit 1 pacman -U /data/pkg_repo/i686/core-testing/$i-svn-$_svnver* || exit 1 rm -rf pkg src rm -f *~ cd .. done echo "" echo "DONE!"