forked from Mirrors/freeswitch
51 lines
1.3 KiB
Bash
Executable File
51 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
##### -*- mode:shell-script; indent-tabs-mode:nil; sh-basic-offset:2 -*-
|
|
|
|
declare -a specfiles=('freeswitch-sounds-en-ca-june.spec' 'freeswitch-sounds-fr-ca-june.spec' 'freeswitch-sounds-ru-RU-elena.spec' 'freeswitch-sounds-en-us-callie.spec' 'freeswitch-sounds-sv-se-jakob.spec')
|
|
|
|
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/..
|
|
git clone https://freeswitch.org/stash/scm/fs/freeswitch-sounds.git
|
|
else
|
|
cd $basedir/../freeswitch-sounds
|
|
git clean -fdx
|
|
git pull
|
|
fi
|
|
|
|
for i in "${specfiles[@]}"
|
|
do
|
|
|
|
cd $basedir/../freeswitch-sounds/sounds/trunk
|
|
|
|
./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
|