Skip to content

Instantly share code, notes, and snippets.

@riverspirit
Last active August 29, 2015 14:10
Show Gist options
  • Save riverspirit/43eda16830d7f75426e6 to your computer and use it in GitHub Desktop.
Save riverspirit/43eda16830d7f75426e6 to your computer and use it in GitHub Desktop.
Build CouchBB with GeoCouch from source on Ubuntu/Debian
#!/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"
@riverspirit
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment