@ -127,7 +127,7 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.8 --nodoc -y
sudo ldconfig
cd ..
# toxcore
git clone --branch v0.2.11 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
git clone --branch v0.2.12 --depth=1 https://github.com/toktok/c-toxcore.git toxcore
cd toxcore
autoreconf -if
CC="ccache $CC" CXX="ccache $CXX" ./configure
@ -632,7 +632,7 @@ cd ..
```bash
git clone https://github.com/toktok/c-toxcore.git toxcore
git checkout v0.2.11
git checkout v0.2.12
./configure
make -j$(nproc)
@ -412,7 +412,7 @@ Provided that you have all required dependencies installed, you can simply run:
cmake . -DBOOTSTRAP_DAEMON=OFF
sudo make install
@ -48,7 +48,7 @@ readonly INSTALL_DIR=libs
readonly BASE_DIR="${SCRIPT_DIR}/${INSTALL_DIR}"
# versions of libs to checkout
readonly TOXCORE_VERSION="v0.2.11"
readonly TOXCORE_VERSION="v0.2.12"
readonly SQLCIPHER_VERSION="v4.3.0"
# directory names of cloned repositories
@ -50,7 +50,7 @@ RUN apt-get update && \
RUN git clone https://github.com/toktok/c-toxcore.git /toxcore
WORKDIR /toxcore
RUN git checkout v0.2.11 && \
RUN git checkout v0.2.12 && \
cmake . && \
cmake --build . && \
make install && \
@ -47,7 +47,7 @@ RUN apt-get update && \
@ -112,8 +112,8 @@
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.11",
"commit": "30b9369b01859e7c57687129ba2a481aa2bc48b8"
"tag": "v0.2.12",
"commit": "9be4dbb4335bf7d893c8d00566d3276ab6dedd14"
}
]
},
@ -145,7 +145,7 @@ install() {
git pull
else
fcho "Cloning Toxcore git ... "
git clone --branch v0.2.11 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
git clone --branch v0.2.12 --depth=1 https://github.com/toktok/c-toxcore "$TOXCORE_DIR"
fi
# qTox
if [[ $TRAVIS = true ]]