sodium.cr/travis-install-lib-sodium.sh

14 lines
299 B
Bash
Raw Normal View History

2018-02-14 01:57:29 +01:00
#!/bin/sh
# The purpose of this file is to install libsodium in
# the Travis CI environment. We recommend using a
# package manager.
2018-02-14 01:57:29 +01:00
set -e
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