summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorrlt3 <leroy@bythehilt.com>2013-08-02 13:50:02 -0400
committerrlt3 <leroy@bythehilt.com>2013-08-02 13:50:02 -0400
commite13e71409954414fea64a84b17acfd13a19ce88e (patch)
treeb45860ecb46a89d55af7fe1af7a03ac36ebbc71f /INSTALL.md
parent1c99d5c52e0e5c65e407b1deb73710f816aa4db1 (diff)
Forgot the include to packages to grab for the non-homebrew steps
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index db6387e7..82ef0ead 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -58,7 +58,7 @@ make
58You need the latest XCode with the Developer Tools (Preferences -> Downloads -> Command Line Tools). 58You need the latest XCode with the Developer Tools (Preferences -> Downloads -> Command Line Tools).
59The following libraries are required along with libsodium and cmake for Mountain Lion and XCode 4.6.3 install libtool, automake and autoconf. You can download them with Homebrew, or install them manually. 59The following libraries are required along with libsodium and cmake for Mountain Lion and XCode 4.6.3 install libtool, automake and autoconf. You can download them with Homebrew, or install them manually.
60 60
61There are no binaries/executables going to /bin/ or /usr/bin/ now. Everything is compiled and ran from the inside your local branch. 61There are no binaries/executables going to /bin/ or /usr/bin/ now. Everything is compiled and ran from the inside your local branch. See [Usage](#usage) below.
62 62
63<a name="homebrew" /> 63<a name="homebrew" />
64####Homebrew: 64####Homebrew:
@@ -75,12 +75,15 @@ Grab the following packages:
75 * http://www.gnu.org/software/libtool/ 75 * http://www.gnu.org/software/libtool/
76 * http://www.gnu.org/software/autoconf/ 76 * http://www.gnu.org/software/autoconf/
77 * http://www.gnu.org/software/automake/ 77 * http://www.gnu.org/software/automake/
78 * http://www.cmake.org/
79 * https://github.com/jedisct1/libsodium
78 80
79Then follow these steps for each: 81Uncompress and install them all. Make sure to follow the README as the instructions change, but they all follow the same pattern below:
80 82
81```bash 83```bash
82./configure 84./configure
83make 85make
86sudo make install
84``` 87```
85 88
86In your local TOX repository: 89In your local TOX repository: