shadowsocks/tests/libsodium/install.sh

12 lines
328 B
Bash
Raw Normal View History

2014-12-10 15:15:24 +00:00
#!/bin/bash
if [ ! -d libsodium-1.0.12 ]; then
wget https://github.com/jedisct1/libsodium/releases/download/1.0.12/libsodium-1.0.12.tar.gz || exit 1
tar xf libsodium-1.0.12.tar.gz || exit 1
2014-12-10 15:15:24 +00:00
fi
pushd libsodium-1.0.12
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
rm -rf libsodium-1.0.12 || exit 1