shadowsocks/tests/libsodium/install.sh

11 lines
289 B
Bash
Raw Normal View History

2014-12-10 15:15:24 +00:00
#!/bin/bash
if [ ! -d libsodium-1.0.1 ]; then
wget https://github.com/jedisct1/libsodium/releases/download/1.0.1/libsodium-1.0.1.tar.gz || exit 1
tar xf libsodium-1.0.1.tar.gz || exit 1
fi
pushd libsodium-1.0.1
2014-12-11 04:46:52 +00:00
./configure && make -j2 && make install || exit 1
2014-12-10 15:46:16 +00:00
sudo ldconfig
2014-12-10 15:15:24 +00:00
popd