Last active
August 29, 2015 14:10
-
-
Save riverspirit/43eda16830d7f75426e6 to your computer and use it in GitHub Desktop.
Build CouchBB with GeoCouch from source on Ubuntu/Debian
This file contains hidden or 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
#!/bin/bash | |
set -e | |
git clone git://github.com/jhs/build-couchdb.git | |
cd build-couchdb | |
git submodule init | |
git submodule update | |
echo '@setfilename autoconf.info' > dependencies/autoconf-2.69/doc/autoconf.texi | |
echo '@setfilename automake.info' > dependencies/automake-1.11.2/doc/automake.texi | |
( cd dependencies/autoconf-archive; ed cfg.mk <<< $'g/@diff/d\nw'; git commit -a -m 'fix build' ) | |
git commit -a -m 'fix build' | |
rake | |
rake plugin="git://github.com/couchbase/geocouch origin/couchdb1.3.x" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Taken mostly from from https://github.com/davedoesdev/build-couchdb-travis/edit/master/build_couchdb.sh