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-04-10 17:38:29 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=/couchdb/source/1.3.0/apache-couchdb-1.3.0.tar.gz'
|
|
|
|
sha1 '1085297fcabb020f407283aba1f74302c9923fa0'
|
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
|
|
|
|
2013-04-10 17:38:29 +00:00
|
|
|
if build.devel? or build.head?
|
|
|
|
depends_on :automake => :build
|
|
|
|
depends_on :libtool => :build
|
|
|
|
# CouchDB >= 1.3.0 requires autoconf 2.63 or higher
|
|
|
|
depends_on 'autoconf' => :build
|
|
|
|
depends_on 'autoconf-archive' => :build
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'help2man' => :build
|
|
|
|
end
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'spidermonkey'
|
|
|
|
depends_on 'icu4c'
|
2013-03-19 19:15:14 +00:00
|
|
|
depends_on 'erlang'
|
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
|
2013-05-27 00:21:08 +00:00
|
|
|
# couchdb 1.3.0 supports vendor names and versioning
|
|
|
|
# in the welcome message
|
|
|
|
inreplace 'etc/couchdb/default.ini.tpl.in' do |s|
|
|
|
|
s.gsub! '%package_author_name%', 'Homebrew'
|
|
|
|
s.gsub! '%version%', '%version%-1'
|
|
|
|
end
|
|
|
|
|
2013-04-10 17:38:29 +00:00
|
|
|
if build.devel? or build.head?
|
|
|
|
# workaround for the auto-generation of THANKS file which assumes
|
|
|
|
# a developer build environment incl access to git sha
|
|
|
|
touch "THANKS"
|
|
|
|
system "./bootstrap"
|
|
|
|
end
|
|
|
|
|
2009-10-14 17:09:11 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--localstatedir=#{var}",
|
2010-03-26 15:18:11 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
2013-04-10 17:38:29 +00:00
|
|
|
"--disable-init",
|
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
|
|
|
|
|
2013-04-10 17:38:29 +00:00
|
|
|
def test
|
|
|
|
# ensure couchdb embedded spidermonkey vm works
|
|
|
|
system "#{bin}/couchjs", "-h"
|
|
|
|
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
|
|
|
|
|
2013-04-10 17:38:29 +00:00
|
|
|
Or start manually as the current user with `couchdb`.
|
|
|
|
|
|
|
|
To test CouchDB, start `couchdb` in a terminal and then:
|
|
|
|
curl http://127.0.0.1:5984/
|
|
|
|
|
|
|
|
The reply should look like:
|
|
|
|
{"couchdb":"Welcome","uuid":"....","version":"1.3.0",
|
|
|
|
"vendor":{"version":"1.3.0-1","name":"Homebrew"}}
|
2010-09-01 15:11:17 +00:00
|
|
|
EOS
|
|
|
|
end
|
2011-01-29 16:54:52 +00:00
|
|
|
end
|