blob: 29d4fced654bd287f698e02c38ccfb785a6b84b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# for 0.22, we are starting the release numbers at 22000
# and incrementing from there every time we build
pkgrel=22006
_svnver=23247
# 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
# set svn version in the PKGBUILD
sed -i s/^_svnver=.*/_svnver=$_svnver/ PKGBUILD
sed -i s/^pkgrel=.*/pkgrel=$pkgrel/ PKGBUILD
# make the package
mp -f -i --holdver || exit 1
# clean up afterwards
rm -rf pkg
rm -f *~
cd ..
done
echo ""
echo "DONE!"
|