2014-09-12 21:42:44 +00:00
#!/bin/sh
##### -*- mode:shell-script; indent-tabs-mode:nil; sh-basic-offset:2 -*-
2019-04-19 16:44:59 +00:00
declare -a specfiles = ( 'freeswitch-sounds-en-ca-june.spec' 'freeswitch-sounds-en-us-allison.spec' 'freeswitch-sounds-fr-ca-june.spec' 'freeswitch-sounds-music.spec' 'freeswitch-sounds-pt-BR-karina.spec' 'freeswitch-sounds-ru-RU-elena.spec' 'freeswitch-sounds-en-us-callie.spec' 'freeswitch-sounds-sv-se-jakob.spec' )
2014-09-12 21:42:44 +00:00
sdir = "."
[ -n " ${ 0 %/* } " ] && sdir = " ${ 0 %/* } "
. $sdir /common.sh
check_pwd
basedir = $( pwd ) ;
( mkdir -p rpmbuild && cd rpmbuild && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SPECS)
if [ ! -d " $basedir /../freeswitch-sounds " ] ; then
cd $basedir /..
2019-04-19 16:44:59 +00:00
git clone https://freeswitch.org/stash/scm/fs/freeswitch-sounds.git
2014-09-12 21:42:44 +00:00
else
cd $basedir /../freeswitch-sounds
git clean -fdx
2019-04-19 16:44:59 +00:00
git pull
2014-09-12 21:42:44 +00:00
fi
for i in " ${ specfiles [@] } "
do
2019-04-19 16:44:59 +00:00
cd $basedir /../freeswitch-sounds/
2014-09-12 21:42:44 +00:00
./dist.pl ` echo $i | sed -e 's/freeswitch-sounds-//g' -e 's/\.spec//g' -e 's/-/\//g' `
mv ` echo $i | sed -e's/\.spec//g' ` *.tar.* $basedir /rpmbuild/SOURCES
cd $basedir
rpmbuild --define "_topdir %(pwd)/rpmbuild" \
--define "_rpmdir %{_topdir}" \
--define "_srcrpmdir %{_topdir}" \
-ba $i
done
mkdir $src_repo /RPMS
mv $src_repo /rpmbuild/*/*.rpm $src_repo /RPMS/.
cat 1>& 2 <<EOF
----------------------------------------------------------------------
The Sound RPMs have been rolled
----------------------------------------------------------------------
EOF