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-01-29 16:54:52 +00:00
|
|
|
url 'https://github.com/apache/couchdb/tarball/1.0.2'
|
2010-06-16 20:13:24 +00:00
|
|
|
homepage "http://couchdb.apache.org/"
|
2011-01-29 16:54:52 +00:00
|
|
|
md5 'cc1cc891ac47dd795b0b9aa2c5375923'
|
2009-09-01 14:17:44 +00:00
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
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
|