1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/bootstrap.sh

181 lines
4.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2014-07-03 20:38:52 +08:00
WINDOWS_VERSION=$(cmd.exe /c ver 2>/dev/null | grep "Microsoft Windows")
if [ ! -z "$WINDOWS_VERSION" ]; then
cd windows
./bootstrap.sh
exit $?
fi
2014-07-08 16:26:40 +08:00
################ parameters ################
2014-07-03 20:38:52 +08:00
# directory where the script is located
SCRIPT_DIR=$( cd $(dirname $0); pwd -P)
2014-07-03 20:38:52 +08:00
2014-07-08 16:26:40 +08:00
# directory where dependencies will be installed
INSTALL_DIR=libs
# just for convenience
BASE_DIR=${SCRIPT_DIR}/${INSTALL_DIR}
SODIUM_VER=1.0.2
2014-07-08 16:26:40 +08:00
# directory names of cloned repositories
SODIUM_DIR=libsodium-$SODIUM_VER
2014-07-08 16:26:40 +08:00
TOX_CORE_DIR=libtoxcore-latest
2014-12-17 08:50:28 +08:00
FILTER_AUDIO_DIR=filter_audio
2014-07-08 16:26:40 +08:00
# this boolean describes whether the installation of
# libsodium should be skipped or not
# the default value is 'false' and will be set to 'true'
# if this script gets the parameter -t or --tox
TOX_ONLY=false
2014-09-11 06:36:34 +08:00
GLOBAL=true
KEEP=false
2014-07-08 16:26:40 +08:00
if [ -z "$BASE_DIR" ]; then
echo "internal error detected!"
echo "BASE_DIR should not be empty... aborting"
exit 1
fi
if [ -z "$SODIUM_DIR" ]; then
echo "internal error detected!"
echo "SODIUM_DIR should not be empty... aborting"
exit 1
fi
if [ -z "$TOX_CORE_DIR" ]; then
echo "internal error detected!"
echo "TOX_CORE_DIR should not be empty... aborting"
exit 1
fi
2014-12-17 08:50:28 +08:00
if [ -z "$FILTER_AUDIO_DIR" ]; then
echo "internal error detected!"
echo "FILTER_AUDIO_DIR should not be empty... aborting"
exit 1
fi
2014-07-08 16:26:40 +08:00
########## check input parameters ##########
while [ $# -ge 1 ] ; do
2014-07-08 16:26:40 +08:00
if [ ${1} = "-t" -o ${1} = "--tox" ] ; then
TOX_ONLY=true
shift
2014-09-11 06:41:46 +08:00
elif [ ${1} = "-l" -o ${1} = "--local" ] ; then
GLOBAL=false
shift
elif [ ${1} = "-k" -o ${1} = "--keep" ]; then
KEEP=true
shift
2014-07-08 16:26:40 +08:00
else
if [ ${1} != "-h" -a ${1} != "--help" ] ; then
echo "[ERROR] Unknown parameter \"${1}\""
echo ""
fi
# print help
echo "Use this script to install/update libsodium and libtoxcore in ${INSTALL_DIR}"
echo ""
echo "usage:"
echo " ${0} [-t|--tox|-h|--help|-g|--global|-k|--keep]"
echo ""
echo "parameters:"
echo " -h|--help : displays this help"
echo " -t|--tox : only install/update libtoxcore"
echo " requires an already installed libsodium"
2014-09-11 06:44:12 +08:00
echo " -l|--local : installs libtox* and libsodium in the current directory,"
echo " as opposed to the system directories"
echo " -k|--keep : does not delete the build directories afterwards"
echo ""
echo "example usages:"
echo " ${0} -- to install libsodium and libtoxcore"
echo " ${0} -t -- to update already installed libtoxcore"
exit 1
2014-07-08 16:26:40 +08:00
fi
done
2014-07-08 16:26:40 +08:00
echo "Tox only: $TOX_ONLY"
echo "Global : $GLOBAL"
echo "Keep : $KEEP"
2014-07-08 16:26:40 +08:00
############### prepare step ###############
# create BASE_DIR directory if necessary
2014-07-08 16:26:40 +08:00
mkdir -p ${BASE_DIR}
2014-07-03 20:38:52 +08:00
# maybe an earlier run of this script failed
2014-07-08 16:26:40 +08:00
# thus we should remove the cloned repositories
# if exists, otherwise cloning them may fail
rm -rf ${BASE_DIR}/${SODIUM_DIR}
2014-07-15 14:20:08 +08:00
rm -rf ${BASE_DIR}/${TOX_CORE_DIR}
2014-12-17 08:50:28 +08:00
rm -rf ${BASE_DIR}/${FILTER_AUDIO_DIR}
2014-07-03 20:38:52 +08:00
2014-07-08 16:26:40 +08:00
############### install step ###############
# clone current master of libsodium and switch to version $SODIUM_VER
2014-07-08 16:26:40 +08:00
# afterwards install libsodium to INSTALL_DIR
# skip the installation if TOX_ONLY is true
if [[ $TOX_ONLY = "false" ]]; then
2014-11-01 14:47:12 +08:00
git clone --branch $SODIUM_VER git://github.com/jedisct1/libsodium.git ${BASE_DIR}/${SODIUM_DIR} --depth 1
2014-07-08 16:26:40 +08:00
pushd ${BASE_DIR}/${SODIUM_DIR}
./autogen.sh
if [[ $GLOBAL = "false" ]]; then
./configure --prefix=${BASE_DIR}/
else
./configure
fi
2014-07-08 16:26:40 +08:00
make -j2 check
2014-09-28 05:51:02 +08:00
if [[ $GLOBAL = "false" || $EUID -eq 0 ]]; then
make install
else
sudo make install
fi
2014-07-08 16:26:40 +08:00
popd
2014-12-17 08:50:28 +08:00
git clone https://github.com/irungentoo/filter_audio.git ${BASE_DIR}/${FILTER_AUDIO_DIR}
pushd ${BASE_DIR}/${FILTER_AUDIO_DIR}
make
if [[ $GLOBAL = "false" || $EUID -eq 0 ]]; then
cp filter_audio.h libfilteraudio.* ${BASE_DIR}
2014-12-17 08:50:28 +08:00
else
sudo make install
2014-12-17 08:50:28 +08:00
fi
2014-07-08 16:26:40 +08:00
fi
# clone current master of libtoxcore
# make sure to compile with libsodium we just installed to INSTALL_DIR
# afterwards install libtoxcore to INSTALL_DIR
2014-09-28 05:43:21 +08:00
git clone https://github.com/irungentoo/toxcore.git ${BASE_DIR}/${TOX_CORE_DIR} --depth 1
2014-07-08 16:26:40 +08:00
pushd ${BASE_DIR}/${TOX_CORE_DIR}
2014-07-03 20:38:52 +08:00
./autogen.sh
if [[ $GLOBAL = "false" ]]; then
./configure --prefix=${BASE_DIR}/ --with-libsodium-headers=${BASE_DIR}/include --with-libsodium-libs=${BASE_DIR}/lib
else
./configure
fi
2014-07-03 20:38:52 +08:00
make -j2
2014-09-28 05:51:02 +08:00
if [[ $GLOBAL = "false" || $EUID -eq 0 ]]; then
make install
else
sudo make install
fi
2014-07-03 20:38:52 +08:00
popd
2014-07-03 20:38:52 +08:00
2014-09-10 22:12:15 +08:00
if [[ $GLOBAL = "true" ]]; then
sudo ldconfig
fi
2014-07-08 16:26:40 +08:00
############### cleanup step ###############
# remove cloned repositories
if [[ $KEEP = "false" ]]; then
rm -rf ${BASE_DIR}/${SODIUM_DIR}
rm -rf ${BASE_DIR}/${TOX_CORE_DIR}
fi