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
|
2010-06-16 20:13:24 +00:00
|
|
|
homepage "http://couchdb.apache.org/"
|
2013-01-14 13:45:03 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=/couchdb/1.2.1/apache-couchdb-1.2.1.tar.gz'
|
|
|
|
sha1 '70dac0304cdc9f4313f524db583170a2c59e265c'
|
2012-04-17 09:20:59 +00:00
|
|
|
|
2012-05-04 04:17:53 +00:00
|
|
|
head 'http://git-wip-us.apache.org/repos/asf/couchdb.git'
|
2011-05-06 08:49:27 +00:00
|
|
|
|
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'
|
2013-03-18 20:35:59 +00:00
|
|
|
depends_on 'homebrew/versions/erlang-r15'
|
2012-09-05 04:04:01 +00:00
|
|
|
depends_on 'curl' if MacOS.version == :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",
|
2012-03-15 06:42:00 +00:00
|
|
|
"--with-js-include=#{HOMEBREW_PREFIX}/include/js",
|
2010-06-25 21:45:50 +00:00
|
|
|
"--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:
|
2013-01-14 13:45:03 +00:00
|
|
|
{"couchdb":"Welcome","version":"1.2.1"}
|
2011-07-07 18:20:06 +00:00
|
|
|
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
|
|
|
|
|
2012-04-17 09:20:59 +00:00
|
|
|
Alternatively, automatically run on startup as a daemon with:
|
|
|
|
sudo launchctl list org.apache.couchdb \>/dev/null 2\>\&1 \&\& \\
|
|
|
|
sudo launchctl unload -w /Library/LaunchDaemons/org.apache.couchdb.plist
|
|
|
|
sudo cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist /Library/LaunchDaemons/
|
|
|
|
sudo launchctl load -w /Library/LaunchDaemons/org.apache.couchdb.plist
|
|
|
|
|
|
|
|
Or start manually as the current user with:
|
2010-09-01 15:11:17 +00:00
|
|
|
couchdb
|
|
|
|
EOS
|
|
|
|
end
|
2011-01-29 16:54:52 +00:00
|
|
|
end
|