Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

Commit

Permalink
Install libsodium 1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mujx committed Sep 18, 2018
1 parent 05cee07 commit 2db7717
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,20 @@ if [ $TRAVIS_OS_NAME == linux ]; then
wget https://cmake.org/files/v3.12/cmake-3.12.2-Linux-x86_64.sh
sudo sh cmake-3.12.2-Linux-x86_64.sh --skip-license --prefix=/usr/local

sudo add-apt-repository -y ppa:chris-lea/libsodium
mkdir -p build-libsodium
pushd build-libsodium
curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16.tar.gz -o libsodium-1.0.16.tar.gz
tar xfz libsodium-1.0.16.tar.gz
cd libsodium-1.0.16/
./configure && make && make check && sudo make install
popd

sudo add-apt-repository -y ppa:beineri/opt-qt${QT_VERSION}-trusty
sudo apt-get update -qq
sudo apt-get install -qq -y \
qt${QT_PKG}base \
qt${QT_PKG}tools \
qt${QT_PKG}svg \
qt${QT_PKG}multimedia \
liblmdb-dev \
libsodium-dev
liblmdb-dev
fi

0 comments on commit 2db7717

Please sign in to comment.