2015-03-26 13:16:22 +08:00
|
|
|
#!/usr/bin/env bash
|
2014-07-03 20:38:52 +08:00
|
|
|
|
2019-06-24 22:01:18 +08:00
|
|
|
# Copyright © 2019 by The qTox Project Contributors
|
|
|
|
#
|
|
|
|
# This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
# qTox is libre software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# qTox is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with qTox. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
|
2015-05-22 23:42:46 +08:00
|
|
|
# This script's purpose is to ease compiling qTox for users.
|
2016-05-06 00:34:21 +08:00
|
|
|
#
|
2015-05-22 23:42:46 +08:00
|
|
|
# NO AUTOMATED BUILDS SHOULD DEPEND ON IT.
|
2016-05-06 00:34:21 +08:00
|
|
|
#
|
2015-05-22 23:42:46 +08:00
|
|
|
# This script is and will be a subject to breaking changes, and at no time one
|
|
|
|
# should expect it to work - it's something that you could try to use but
|
|
|
|
# don't expect that it will work for sure.
|
|
|
|
#
|
|
|
|
# If script doesn't work, you should use instructions provided in INSTALL.md
|
|
|
|
# before reporting issues like “qTox doesn't compile”.
|
|
|
|
#
|
|
|
|
# With that being said, reporting that this script doesn't work would be nice.
|
|
|
|
#
|
|
|
|
# If you are contributing code to qTox that change its dependencies / the way
|
2016-05-06 00:34:21 +08:00
|
|
|
# it's being build, please keep in mind that changing just bootstrap.sh
|
2015-05-22 23:42:46 +08:00
|
|
|
# *IS NOT* and will not be sufficient - you should update INSTALL.md first.
|
|
|
|
|
2016-05-06 00:34:21 +08:00
|
|
|
set -eu -o pipefail
|
2015-05-22 23:42:46 +08:00
|
|
|
|
2015-05-17 05:09:48 +08:00
|
|
|
|
2014-07-08 16:26:40 +08:00
|
|
|
################ parameters ################
|
2014-07-03 20:38:52 +08:00
|
|
|
# directory where the script is located
|
2016-12-26 21:25:38 +08:00
|
|
|
readonly 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
|
2016-12-26 21:25:38 +08:00
|
|
|
readonly INSTALL_DIR=libs
|
2014-07-08 16:26:40 +08:00
|
|
|
|
|
|
|
# just for convenience
|
2016-12-26 21:25:38 +08:00
|
|
|
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
|
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
# versions of libs to checkout
|
2020-05-02 06:37:47 +08:00
|
|
|
readonly TOXCORE_VERSION="v0.2.12"
|
2020-03-21 06:14:07 +08:00
|
|
|
readonly SQLCIPHER_VERSION="v4.3.0"
|
2014-07-08 16:26:40 +08:00
|
|
|
|
|
|
|
# directory names of cloned repositories
|
2016-12-26 21:25:38 +08:00
|
|
|
readonly TOXCORE_DIR="libtoxcore-$TOXCORE_VERSION"
|
2016-12-27 15:04:08 +08:00
|
|
|
readonly SQLCIPHER_DIR="sqlcipher-$SQLCIPHER_VERSION"
|
2014-07-08 16:26:40 +08:00
|
|
|
|
2015-05-13 22:13:56 +08:00
|
|
|
# default values for user given parameters
|
|
|
|
INSTALL_TOX=true
|
2016-05-06 00:34:21 +08:00
|
|
|
INSTALL_SQLCIPHER=false
|
2015-05-13 22:13:56 +08:00
|
|
|
SYSTEM_WIDE=true
|
|
|
|
KEEP_BUILD_FILES=false
|
|
|
|
|
2016-05-06 00:34:21 +08:00
|
|
|
# if Fedora, by default install sqlcipher
|
2016-12-27 15:04:08 +08:00
|
|
|
if which dnf &> /dev/null
|
|
|
|
then
|
2016-05-06 00:34:21 +08:00
|
|
|
INSTALL_SQLCIPHER=true
|
|
|
|
fi
|
|
|
|
|
2015-05-17 05:09:48 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
print_help() {
|
|
|
|
echo "Use this script to install/update libtoxcore"
|
|
|
|
echo ""
|
|
|
|
echo "usage:"
|
|
|
|
echo " ${0} PARAMETERS"
|
|
|
|
echo ""
|
|
|
|
echo "parameters:"
|
|
|
|
echo " --with-tox : install/update libtoxcore"
|
|
|
|
echo " --without-tox : do not install/update libtoxcore"
|
|
|
|
echo " --with-sqlcipher : install/update sqlcipher"
|
|
|
|
echo " --without-sqlcipher : do not install/update sqlcipher"
|
|
|
|
echo " -h|--help : displays this help"
|
|
|
|
echo " -l|--local : install packages into ${INSTALL_DIR}"
|
|
|
|
echo " -k|--keep : keep build files after installation/update"
|
|
|
|
echo ""
|
|
|
|
echo "example usages:"
|
|
|
|
echo " ${0} -- install libtoxcore"
|
|
|
|
}
|
2015-05-13 22:13:56 +08:00
|
|
|
|
2015-05-17 05:09:48 +08:00
|
|
|
############ print debug output ############
|
2016-12-27 15:04:08 +08:00
|
|
|
print_debug_output() {
|
|
|
|
echo "with tox : ${INSTALL_TOX}"
|
|
|
|
echo "with sqlcipher : ${INSTALL_SQLCIPHER}"
|
|
|
|
echo "install system-wide : ${SYSTEM_WIDE}"
|
|
|
|
echo "keep build files : ${KEEP_BUILD_FILES}"
|
|
|
|
}
|
2016-05-06 00:34:21 +08:00
|
|
|
|
|
|
|
# remove not needed dirs
|
|
|
|
remove_build_dirs() {
|
2016-12-26 21:25:38 +08:00
|
|
|
rm -rf "${BASE_DIR}/${TOXCORE_DIR}"
|
2016-09-28 10:37:01 +08:00
|
|
|
rm -rf "${BASE_DIR}/${SQLCIPHER_DIR}"
|
2016-05-06 00:34:21 +08:00
|
|
|
}
|
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
install_toxcore() {
|
|
|
|
if [[ $INSTALL_TOX = "true" ]]
|
|
|
|
then
|
|
|
|
git clone https://github.com/toktok/c-toxcore.git \
|
|
|
|
--branch $TOXCORE_VERSION \
|
|
|
|
--depth 1 \
|
|
|
|
"${BASE_DIR}/${TOXCORE_DIR}"
|
|
|
|
|
|
|
|
pushd ${BASE_DIR}/${TOXCORE_DIR}
|
2015-05-17 05:09:48 +08:00
|
|
|
|
2018-07-02 01:17:19 +08:00
|
|
|
# compile and install
|
2016-12-27 15:04:08 +08:00
|
|
|
if [[ $SYSTEM_WIDE = "false" ]]
|
|
|
|
then
|
2019-10-16 17:04:20 +08:00
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX=${BASE_DIR} -DBOOTSTRAP_DAEMON=OFF
|
2018-07-02 01:17:19 +08:00
|
|
|
make -j $(nproc)
|
2016-12-27 15:04:08 +08:00
|
|
|
make install
|
|
|
|
else
|
2019-10-16 17:04:20 +08:00
|
|
|
cmake . -DBOOTSTRAP_DAEMON=OFF
|
2018-07-02 01:17:19 +08:00
|
|
|
make -j $(nproc)
|
2016-12-27 15:04:08 +08:00
|
|
|
sudo make install
|
|
|
|
sudo ldconfig
|
|
|
|
fi
|
2016-05-06 00:34:21 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
popd
|
2015-05-17 05:57:04 +08:00
|
|
|
fi
|
2016-12-27 15:04:08 +08:00
|
|
|
}
|
2016-05-06 00:34:21 +08:00
|
|
|
|
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
install_sqlcipher() {
|
|
|
|
if [[ $INSTALL_SQLCIPHER = "true" ]]
|
|
|
|
then
|
|
|
|
git clone https://github.com/sqlcipher/sqlcipher.git \
|
|
|
|
"${BASE_DIR}/${SQLCIPHER_DIR}" \
|
|
|
|
--branch $SQLCIPHER_VERSION \
|
|
|
|
--depth 1
|
|
|
|
|
|
|
|
pushd "${BASE_DIR}/${SQLCIPHER_DIR}"
|
|
|
|
autoreconf -if
|
|
|
|
|
|
|
|
if [[ $SYSTEM_WIDE = "false" ]]
|
|
|
|
then
|
|
|
|
./configure --prefix="${BASE_DIR}" \
|
|
|
|
--enable-tempstore=yes \
|
|
|
|
CFLAGS="-DSQLITE_HAS_CODEC"
|
|
|
|
make -j$(nproc)
|
|
|
|
make install || \
|
|
|
|
echo "" && \
|
|
|
|
echo "Sqlcipher failed to install locally." && \
|
|
|
|
echo "" && \
|
|
|
|
echo "Try without \"-l|--local\"" && \
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
./configure \
|
|
|
|
--enable-tempstore=yes \
|
|
|
|
CFLAGS="-DSQLITE_HAS_CODEC"
|
|
|
|
make -j$(nproc)
|
|
|
|
sudo make install
|
|
|
|
sudo ldconfig
|
|
|
|
fi
|
2016-05-06 00:34:21 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
popd
|
2014-12-17 08:50:28 +08:00
|
|
|
fi
|
2016-12-27 15:04:08 +08:00
|
|
|
}
|
2016-05-06 00:34:21 +08:00
|
|
|
|
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
main() {
|
|
|
|
########## parse input parameters ##########
|
|
|
|
while [ $# -ge 1 ]
|
|
|
|
do
|
|
|
|
if [ ${1} = "--with-tox" ]
|
|
|
|
then
|
|
|
|
INSTALL_TOX=true
|
|
|
|
shift
|
|
|
|
elif [ ${1} = "--without-tox" ]
|
|
|
|
then
|
|
|
|
INSTALL_TOX=false
|
|
|
|
shift
|
|
|
|
elif [ ${1} = "--with-sqlcipher" ]
|
|
|
|
then
|
|
|
|
INSTALL_SQLCIPHER=true
|
|
|
|
shift
|
|
|
|
elif [ ${1} = "--without-sqlcipher" ]
|
|
|
|
then
|
|
|
|
INSTALL_SQLCIPHER=false
|
|
|
|
shift
|
|
|
|
elif [ ${1} = "-l" -o ${1} = "--local" ]
|
|
|
|
then
|
|
|
|
SYSTEM_WIDE=false
|
|
|
|
shift
|
|
|
|
elif [ ${1} = "-k" -o ${1} = "--keep" ]
|
|
|
|
then
|
|
|
|
KEEP_BUILD_FILES=true
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
if [ ${1} != "-h" -a ${1} != "--help" ]
|
|
|
|
then
|
|
|
|
echo "[ERROR] Unknown parameter \"${1}\""
|
|
|
|
echo ""
|
|
|
|
print_help
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
print_help
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
done
|
2016-05-06 00:34:21 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
print_debug_output
|
2014-07-03 20:38:52 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
############### prepare step ###############
|
|
|
|
# create BASE_DIR directory if necessary
|
|
|
|
mkdir -p "${BASE_DIR}"
|
2014-09-10 22:12:15 +08:00
|
|
|
|
2016-12-27 15:04:08 +08:00
|
|
|
# maybe an earlier run of this script failed
|
|
|
|
# thus we should remove the cloned repositories
|
|
|
|
# if they exist, otherwise cloning them may fail
|
2016-05-06 00:34:21 +08:00
|
|
|
remove_build_dirs
|
2016-12-27 15:04:08 +08:00
|
|
|
|
|
|
|
############### install step ###############
|
|
|
|
install_toxcore
|
|
|
|
install_sqlcipher
|
|
|
|
|
|
|
|
############### cleanup step ###############
|
|
|
|
# remove cloned repositories
|
|
|
|
if [[ $KEEP_BUILD_FILES = "false" ]]
|
|
|
|
then
|
|
|
|
remove_build_dirs
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
main $@
|