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

chore: Updated build scrips

This commit is contained in:
Diadlo 2016-09-25 00:22:48 +03:00
parent c726038198
commit fe8671f35e
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
3 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y
sudo ldconfig
cd ..
# toxcore
git clone https://github.com/irungentoo/toxcore.git
git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
autoreconf -if
./configure

View File

@ -129,7 +129,7 @@ remove_build_dirs
############### install step ###############
#install libtoxcore
if [[ $INSTALL_TOX = "true" ]]; then
git clone https://github.com/irungentoo/toxcore.git \
git clone https://github.com/toktok/c-toxcore.git \
"${BASE_DIR}/${TOX_CORE_DIR}" --depth 1
pushd ${BASE_DIR}/${TOX_CORE_DIR}

View File

@ -130,7 +130,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
git clone --depth=1 https://github.com/irungentoo/toxcore "$TOXCORE_DIR"
git clone --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# qTox
if [[ $TRAVIS = true ]]
@ -282,7 +282,7 @@ helpme() {
echo "-b | --build -- Builds qTox in: ${BUILD_DIR}"
echo "-d | --deploy -- Makes a distributable qTox.app file in: ${DEPLOY_DIR}"
echo "-bs | --bootstrap -- Performs bootstrap steps."
fcho "Issues with Toxcore or qTox should be reported to their respective repos: https://github.com/irungentoo/toxcore | https://github.com/qTox/qTox"
fcho "Issues with Toxcore or qTox should be reported to their respective repos: https://github.com/toktok/c-toxcore | https://github.com/qTox/qTox"
exit 0
}