Skip to content

Instantly share code, notes, and snippets.

@codeck
Last active August 29, 2015 14:05
Show Gist options
  • Save codeck/842daab6625dde730c74 to your computer and use it in GitHub Desktop.
Save codeck/842daab6625dde730c74 to your computer and use it in GitHub Desktop.
stellard build script
wget https://download.libsodium.org/libsodium/releases/libsodium-0.6.0.tar.gz
tar zvfx libsodium-0.6.0.tar.gz
cd libsodium-0.6.0/
./configure --prefix=`realpath .`-bin
make && make install
cd ..
#diff --git a/SConstruct b/SConstruct
#index a4dca74..024e5e0 100644
#--- a/SConstruct
#+++ b/SConstruct
#@@ -221,6 +221,7 @@ INCLUDE_PATHS = [
# 'src/snappy/config',
# ]
#
#+INCLUDE_PATHS.append('libsodium-0.6.0-bin/include')
# # if BOOST_HOME:
# # INCLUDE_PATHS.append(BOOST_HOME)
env PKG_CONFIG_PATH=`realpath libsodium-0.6.0-bin`/lib/pkgconfig scons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment