2018-02-14 01:57:29 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# The purpose of this file is to install libsodium in
|
2018-02-16 22:19:56 +01:00
|
|
|
# the Travis CI environment. We recommend using a
|
|
|
|
# package manager.
|
2018-02-14 01:57:29 +01:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2018-02-16 22:19:56 +01:00
|
|
|
wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
|
|
|
|
tar xvfz LATEST.tar.gz
|
2018-02-14 01:57:29 +01:00
|
|
|
cd libsodium-stable
|
|
|
|
sudo ./configure
|
|
|
|
sudo make
|
|
|
|
sudo make install
|