Skip to content

Instantly share code, notes, and snippets.

@avsm
Last active August 29, 2015 13:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avsm/9037146 to your computer and use it in GitHub Desktop.
Save avsm/9037146 to your computer and use it in GitHub Desktop.
install libsodium from source
#!/bin/sh -ex
V=0.7.1
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
@dsheets
Copy link

dsheets commented Nov 21, 2014

Could you bump the V to 1.0.0, please?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment