Browse Source

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

reviewable/pr3736/r11
Diadlo 9 years ago
parent
commit
7ff84b070e
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
  1. 2
      .travis/build-ubuntu-14-04.sh
  2. 1
      INSTALL.md
  3. 1
      bootstrap.sh
  4. 2
      osx/qTox-Mac-Deployer-ULTIMATE.sh

2
.travis/build-ubuntu-14-04.sh

@ -129,7 +129,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y @@ -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

1
INSTALL.md

@ -365,6 +365,7 @@ Provided that you have all required dependencies installed, you can simply run: @@ -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)

1
bootstrap.sh

@ -133,6 +133,7 @@ if [[ $INSTALL_TOX = "true" ]]; then @@ -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

2
osx/qTox-Mac-Deployer-ULTIMATE.sh

@ -130,7 +130,7 @@ install() { @@ -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 ]]

Loading…
Cancel
Save