mirror of
https://salsa.debian.org/pkg-voip-team/coturn.git
synced 2025-11-21 08:29:27 +01:00
26 lines
438 B
Bash
Executable file
26 lines
438 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Common preparation script.
|
|
|
|
. ./build.settings.sh
|
|
|
|
# DIRS
|
|
|
|
rm -rf ${BUILDDIR}
|
|
|
|
mkdir -p ${BUILDDIR}
|
|
mkdir -p ${BUILDDIR}/SOURCES
|
|
mkdir -p ${BUILDDIR}/SPECS
|
|
mkdir -p ${BUILDDIR}/RPMS
|
|
mkdir -p ${BUILDDIR}/tmp
|
|
|
|
# Common packs
|
|
|
|
PACKS="make gcc redhat-rpm-config rpm-build doxygen openssl-devel git wget"
|
|
sudo yum -y install ${PACKS}
|
|
ER=$?
|
|
if ! [ ${ER} -eq 0 ] ; then
|
|
echo "Cannot install packages ${PACKS}"
|
|
exit -1
|
|
fi
|
|
|