Skip to content

Instantly share code, notes, and snippets.

@christoph-buente
Created April 6, 2011 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christoph-buente/905414 to your computer and use it in GitHub Desktop.
Save christoph-buente/905414 to your computer and use it in GitHub Desktop.
Geocouch formula for homebrew
require 'formula'
class Geocouch <Formula
url 'https://github.com/vmx/couchdb/tarball/0.10.x'
homepage 'http://vmx.cx/cgi-bin/blog/index.cgi'
depends_on 'erlang'
depends_on 'icu4c'
depends_on 'spidermonkey'
def install
system "./bootstrap"
system "./configure"
# if it fails try 'brew link icu4c'
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment