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

chore(toxcore): Added checkout on v0.1.0 toxcore

This commit is contained in:
Diadlo 2016-12-14 13:54:19 +03:00
parent de407c4714
commit 7ff84b070e
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
4 changed files with 4 additions and 2 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/toktok/c-toxcore.git toxcore
git clone --branch v0.1.0 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
autoreconf -if
./configure

View File

@ -365,6 +365,7 @@ Provided that you have all required dependencies installed, you can simply run:
```bash
git clone https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
git checkout tags/v0.1.0
autoreconf -if
./configure
make -j$(nproc)

View File

@ -133,6 +133,7 @@ if [[ $INSTALL_TOX = "true" ]]; then
"${BASE_DIR}/${TOX_CORE_DIR}" --depth 1
pushd ${BASE_DIR}/${TOX_CORE_DIR}
git checkout tags/v0.1.0
./autogen.sh
# configure

View File

@ -130,7 +130,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
git clone --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
git clone --branch v0.1.0 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# qTox
if [[ $TRAVIS = true ]]