Skip to content
Snippets Groups Projects
Commit 973b47ec authored by Donald Stufft's avatar Donald Stufft
Browse files

Fix Travis

parent 37d7f8dc
Branches
Tags
No related merge requests found
...@@ -6,6 +6,7 @@ python: ...@@ -6,6 +6,7 @@ python:
- "3.3" - "3.3"
- "pypy" - "pypy"
install: install:
- sudo apt-get install python-pip
- /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git - /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git
- 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi' - 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi'
- 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi' - 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi'
......
#!/bin/sh
set -e
cd $HOME
wget http://download.dnscrypt.org/libsodium/releases/libsodium-0.2.tar.gz
tar xf libsodium-0.2.tar.gz
cd libsodium-0.2
./configure --disable-debug --disable-dependency-tracking
make
make check
make install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment