2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 14:17:44 +00:00
|
|
|
|
|
|
|
class Couchdb <Formula
|
2010-09-01 15:11:17 +00:00
|
|
|
url 'http://github.com/apache/couchdb/tarball/1.0.1'
|
2010-06-16 20:13:24 +00:00
|
|
|
homepage "http://couchdb.apache.org/"
|
2010-08-17 08:21:53 +00:00
|
|
|
version "1.0.1"
|
2010-09-01 15:11:17 +00:00
|
|
|
md5 'f2ea23caacff482afe44e29a3f8b7685'
|
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'
|
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:
|
|
|
|
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
|
|
|
|
|
|
|
If this is an upgrade and you already have the com.mysql.mysqld.plist loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
|
|
|
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
|
|
|
|
|
|
|
|
Or start manually with:
|
|
|
|
couchdb
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|