Created
June 13, 2014 02:20
-
-
Save chergert/4bb50c11f2a51212d50b to your computer and use it in GitHub Desktop.
install mongo-c-driver on Ubuntu 14.04 with packages from git.
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
#!/usr/bin/env bash | |
sudo apt-get install gcc dpkg-dev cdbs automake autoconf libtool make libssl-dev libsasl2-dev git python-lxml pkg-config | |
git clone git://github.com/mongodb/mongo-c-driver.git | |
cd mongo-c-driver | |
./build/mci.sh --notest | |
cd .. | |
sudo dpkg --install libmongoc-*.deb libbson-*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment