2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 14:17:44 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Couchdb < Formula
|
2011-07-27 09:41:17 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=couchdb/1.1.0/apache-couchdb-1.1.0.tar.gz'
|
2010-06-16 20:13:24 +00:00
|
|
|
homepage "http://couchdb.apache.org/"
|
2011-07-29 04:41:38 +00:00
|
|
|
md5 '907b763d3a14b6649bf0371ffa75a36b'
|
2009-09-01 14:17:44 +00:00
|
|
|
|
2011-05-06 08:49:27 +00:00
|
|
|
head 'http://svn.apache.org/repos/asf/couchdb/trunk'
|
|
|
|
|
2011-10-31 03:35:29 +00:00
|
|
|
depends_on 'help2man' => :build
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'spidermonkey'
|
|
|
|
depends_on 'icu4c'
|
|
|
|
depends_on 'erlang'
|
2011-04-08 18:16:37 +00:00
|
|
|
depends_on 'curl' if MacOS.leopard?
|
2009-09-30 07:08:33 +00:00
|
|
|
|
2009-09-01 14:17:44 +00:00
|
|
|
def install
|
2010-03-26 15:18:11 +00:00
|
|
|
system "./bootstrap" if File.exists? "bootstrap"
|
2009-10-14 17:09:11 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--localstatedir=#{var}",
|
2010-03-26 15:18:11 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
2010-06-25 21:45:50 +00:00
|
|
|
"--with-erlang=#{HOMEBREW_PREFIX}/lib/erlang/usr/include",
|
|
|
|
"--with-js-include=#{HOMEBREW_PREFIX}/include",
|
|
|
|
"--with-js-lib=#{HOMEBREW_PREFIX}/lib"
|
2009-09-01 14:17:44 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2009-09-07 03:26:56 +00:00
|
|
|
|
2011-09-02 21:41:57 +00:00
|
|
|
(prefix+"Library/LaunchDaemons/org.apache.couchdb.plist").chmod 0644
|
2010-03-27 05:48:41 +00:00
|
|
|
(lib+'couchdb/bin/couchjs').chmod 0755
|
|
|
|
(var+'lib/couchdb').mkpath
|
|
|
|
(var+'log/couchdb').mkpath
|
2010-08-10 15:19:57 +00:00
|
|
|
end
|
|
|
|
|
2011-07-07 18:20:06 +00:00
|
|
|
def test
|
|
|
|
puts <<-EOS.undent
|
|
|
|
To test CouchDB, start `couchdb` in a terminal and then:
|
|
|
|
curl http://127.0.0.1:5984/
|
|
|
|
|
|
|
|
The reply should look like:
|
|
|
|
{"couchdb":"Welcome","version":"1.1.0"}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2010-09-01 15:11:17 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If this is your first install, automatically load on login with:
|
2011-02-27 08:07:58 +00:00
|
|
|
mkdir -p ~/Library/LaunchAgents
|
|
|
|
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents/
|
2010-09-01 15:11:17 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
|
|
|
|
2010-09-22 20:21:26 +00:00
|
|
|
If this is an upgrade and you already have the org.apache.couchdb.plist loaded:
|
2010-09-01 15:11:17 +00:00
|
|
|
launchctl unload -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
2011-02-27 08:07:58 +00:00
|
|
|
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents/
|
2010-09-01 15:11:17 +00:00
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
|
|
|
|
|
|
|
Or start manually with:
|
|
|
|
couchdb
|
|
|
|
EOS
|
|
|
|
end
|
2011-01-29 16:54:52 +00:00
|
|
|
end
|