10 lines
289 B
Bash
Executable file
10 lines
289 B
Bash
Executable file
#!/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
|
|
./configure && make -j2 && make install || exit 1
|
|
sudo ldconfig
|
|
popd
|