# Get it
cd
test -f installed/libsodium-1.0.18.tar.gz &&
mv -f installed/libsodium-1.0.18.tar.gz .
test ! -f libsodium-1.0.18.tar.gz &&
wget https://download.libsodium.org/libsodium/releases/\
libsodium-1.0.18.tar.gz
# Verify tarball w/ sha256sum:
# (this came from my gpg-verified tarball)
echo "6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636\
c1 libsodium-1.0.18.tar.gz" | sha256sum -c
# Extract the source
mkdir -p -m 0700 ~/src
cd ~/src
find -maxdepth 1 -type d -name "libsodium-*" -exec rm -r {} \;
tar xzvf ~/libsodium-1.0.18.tar.gz
cd libsodium-1.0.18
test $UID = 0 && chown -R root:root .
# To match the prefix that Slackware uses in it's package, use
# --prefix=/usr
# Configure the build for 64-bit
test $(uname -m) = 'x86_64' &&
./configure --prefix=/usr --libdir=/usr/lib64 --disable-shared
# Configure the build for anything else
test $(uname -m) != 'x86_64' &&
./configure --prefix=/usr --disable-shared
# Build it
# If the build fails with assembler errors, try upgrading binutils
make
# Check the build
make check
# Become root to install it
su
# Remove the Slackware package, if there is one
test -x /sbin/removepkg && /sbin/removepkg libsodium
# Install it
make install
ldconfig
# Become yourself again
exit
# Save the source for later
cd
mkdir -p -m 0700 installed
rm -f installed/libsodium-*.tar.*
mv -f libsodium-1.0.18.tar.gz installed/
# If you ever want to uninstall libsodium, this should do it:
cd
su
test -d src/libsodium-* && ( cd src/libsodium-* ; make uninstall )
test -d /usr/local/include/sodium && rm -r /usr/local/include/sodium
for libdir in /usr/local/lib /usr/local/lib64;
do
test -d $libdir &&
( cd $libdir
rm -f libsodium.*
test -d pkgconfig && rm -f pkgconfig/libsodium.pc )
done
exit
find ~/src -maxdepth 1 -type d -name "libsodium-*" -exec rm -r {} \;
rm -f ~/installed/libsodium-*.tar.*