Last active
August 29, 2015 14:05
-
-
Save codeck/842daab6625dde730c74 to your computer and use it in GitHub Desktop.
stellard build script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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