Skip to content

Instantly share code, notes, and snippets.

@objmagic
Last active August 29, 2015 14:09
Show Gist options
  • Save objmagic/781f5821a4a6b75ee842 to your computer and use it in GitHub Desktop.
Save objmagic/781f5821a4a6b75ee842 to your computer and use it in GitHub Desktop.
install-libsodium.sh
#!/bin/sh -ex
V=1.0.0
curl -OL https://download.libsodium.org/libsodium/releases/libsodium-${V}.tar.gz
tar -zxvf libsodium-${V}.tar.gz
cd libsodium-${V}
./configure
make
sudo make install
make clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment