Skip to content

Instantly share code, notes, and snippets.

View dsheets's full-sized avatar

David Sheets dsheets

  • Cambridge, UK
View GitHub Profile
@avsm
avsm / source-install-libsodium.sh
Last active August 29, 2015 13:56
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