diff options
author | Jakub Stasiak <jakub@stasiak.at> | 2014-03-01 11:42:29 +0000 |
---|---|---|
committer | aph <a.hewson@gmail.com> | 2014-03-01 22:11:12 +0000 |
commit | 29ae98d1863494199f027b7c5f9189d553ee9212 (patch) | |
tree | d322d43a9303c3f5296b50ae0bdcac03b3ab413c | |
parent | 8917bf25bca96d555b25ff7cce8ae54c76e74503 (diff) | |
download | rneovim-29ae98d1863494199f027b7c5f9189d553ee9212.tar.gz rneovim-29ae98d1863494199f027b7c5f9189d553ee9212.tar.bz2 rneovim-29ae98d1863494199f027b7c5f9189d553ee9212.zip |
Be more explicit about OS X deps installation
-rw-r--r-- | README.md | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -299,19 +299,27 @@ compiling the libuv dependency. See joyent/libuv#1158. * Install [Xcode](https://developer.apple.com/) and [Homebrew](http://brew.sh) or [MacPorts](http://www.macports.org) -* Install sha1sum +* Install libtool, sha1sum, automake and cmake: + + Via MacPorts: + + sudo port install md5sha1sum libtool automake cmake + + Via Homebrew: + + brew install md5sha1sum libtool automake cmake If you run into wget certificate errors, you may be missing the root SSL certificates or have not set them up correctly: Via MacPorts: - sudo port install curl-ca-bundle libtool automake cmake + sudo port install curl-ca-bundle echo CA_CERTIFICATE=/opt/local/share/curl/curl-ca-bundle.crt >> ~/.wgetrc Via Homebrew: - brew install curl-ca-bundle libtool automake cmake + brew install curl-ca-bundle echo CA_CERTIFICATE=$(brew --prefix curl-ca-bundle)/share/ca-bundle.crt >> ~/.wgetrc |