shadowsocks/tests/libsodium/install.sh

11 lines
294 B
Bash
Raw Normal View History

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