mirror of https://github.com/coturn/coturn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
328 B
20 lines
328 B
#!/bin/bash
|
|
|
|
CPWD=`pwd`
|
|
|
|
# Fedora preparation script.
|
|
|
|
. ./common.pre.build.sh
|
|
|
|
PACKS="libevent-devel mariadb-devel sqlite sqlite-devel"
|
|
sudo yum -y install ${PACKS}
|
|
ER=$?
|
|
if ! [ ${ER} -eq 0 ] ; then
|
|
echo "Cannot install package(s) ${PACKS}"
|
|
cd ${CPWD}
|
|
exit -1
|
|
fi
|
|
|
|
echo "Fedora20" > ${BUILDDIR}/platform
|
|
|
|
cd ${CPWD}
|
|
|